Blame src/main.cpp

Packit Service 50c9f2
/******************************************************************************
Packit Service 50c9f2
 *
Packit Service 50c9f2
 *
Packit Service 50c9f2
 *
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Copyright (C) 1997-2015 by Dimitri van Heesch.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Permission to use, copy, modify, and distribute this software and its
Packit Service 50c9f2
 * documentation under the terms of the GNU General Public License is hereby
Packit Service 50c9f2
 * granted. No representations are made about the suitability of this software
Packit Service 50c9f2
 * for any purpose. It is provided "as is" without express or implied warranty.
Packit Service 50c9f2
 * See the GNU General Public License for more details.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Documents produced by Doxygen are derivative works derived from the
Packit Service 50c9f2
 * input used in their production; they are not affected by this license.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 */
Packit Service 50c9f2
Packit Service 50c9f2
#include "doxygen.h"
Packit Service 50c9f2
Packit Service 50c9f2
/*! \file
Packit Service 50c9f2
 *  \brief main entry point for doxygen
Packit Service 50c9f2
 *
Packit Service 50c9f2
 *  This file contains main()
Packit Service 50c9f2
 */
Packit Service 50c9f2
Packit Service 50c9f2
/*! Default main. The idea of separating this from the rest of doxygen,
Packit Service 50c9f2
 *  is to make it possible to write your own main, with a different
Packit Service 50c9f2
 *  generateOutput() function for instance.
Packit Service 50c9f2
 */
Packit Service 50c9f2
int main(int argc,char **argv)
Packit Service 50c9f2
{
Packit Service 50c9f2
  initDoxygen();
Packit Service 50c9f2
  readConfiguration(argc,argv);
Packit Service 50c9f2
  checkConfiguration();
Packit Service 50c9f2
  adjustConfiguration();
Packit Service 50c9f2
  parseInput();
Packit Service 50c9f2
  generateOutput();
Packit Service 50c9f2
  return 0;
Packit Service 50c9f2
}
Packit Service 50c9f2