summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
blob: 7ae98c7ef40477404144e7945ddb6443dd669eaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "doxygen.h"

/*! \file
 *  \brief main entry point for doxygen
 *
 *  This file contains main()
 */

/*! Default main. The idea of separating this from the rest of doxygen,
 *  is to make it possible to write your own main, with a different 
 *  generateOutput() function for instance.
 */
int main(int argc,char **argv)
{
  initDoxygen();
  readConfiguration(argc,argv);
  parseInput();
  generateOutput();
  return 0;
}