Blame src/main.cpp

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