Doxygen
Loading...
Searching...
No Matches
main.cpp
Go to the documentation of this file.
1/******************************************************************************
2 *
3 * Copyright (C) 1997-2026 by Dimitri van Heesch.
4 *
5 * Permission to use, copy, modify, and distribute this software and its
6 * documentation under the terms of the GNU General Public License is hereby
7 * granted. No representations are made about the suitability of this software
8 * for any purpose. It is provided "as is" without express or implied warranty.
9 * See the GNU General Public License for more details.
10 *
11 * Documents produced by Doxygen are derivative works derived from the
12 * input used in their production; they are not affected by this license.
13 *
14 */
15
16#include "doxygen.h"
17
18/*! \file
19 * \brief main entry point for doxygen
20 *
21 * This file contains main()
22 */
23
24/*! Default main. The idea of separating this from the rest of doxygen,
25 * is to make it possible to write your own main, with a different
26 * generateOutput() function for instance.
27 */
28int main(int argc,char **argv)
29{
31 readConfiguration(argc,argv);
34 parseInput();
36 return 0;
37}
38
void adjustConfiguration()
adjust globals that depend on configuration settings.
void initDoxygen()
void checkConfiguration()
check and resolve config options
void generateOutput()
void parseInput()
void readConfiguration(int argc, char **argv)
int main(int argc, char **argv)
Definition main.cpp:28