00001 /****************************************************************************** 00002 * 00003 * $Id: main.cpp,v 1.86 2001/01/01 10:15:16 root Exp $ 00004 * 00005 * 00006 * Copyright (C) 1997-2008 by Dimitri van Heesch. 00007 * 00008 * Permission to use, copy, modify, and distribute this software and its 00009 * documentation under the terms of the GNU General Public License is hereby 00010 * granted. No representations are made about the suitability of this software 00011 * for any purpose. It is provided "as is" without express or implied warranty. 00012 * See the GNU General Public License for more details. 00013 * 00014 * Documents produced by Doxygen are derivative works derived from the 00015 * input used in their production; they are not affected by this license. 00016 * 00017 */ 00018 00019 #include "doxygen.h" 00020 00031 int main(int argc,char **argv) 00032 { 00033 initDoxygen(); 00034 00035 readConfiguration(argc,argv); 00036 checkConfiguration(); 00037 parseInput(); 00038 generateOutput(); 00039 return 0; 00040 } 00041