// -*- C++ -*- // $Id: main_page.doxygen 21281 2009-08-18 06:38:17Z tomss $ // Documentation for the main page of the doxygen-generated reference manual /** \mainpage \section intro Introduction This reference documentation corresponds to version @PACKAGE_VERSION@ of libdap, a C++ implementation of DAP2, with some extensions. The libdap library includes classes and functions which implement DAP 2.0 as well as utilities which simpify building clients and servers for DAP 2.0 and DAP4.0. \section conventions Doxygen Conventions This section lists some conventions used by the Doxygen comments which are used to generate this Reference Guide. Follow these conventions when adding to or modifying the reference documentation. \subsection general General \subsection classes Classes Classes should be documented in the header (\c .h) file where they are defined. Commands that should be used for the documentation of classes:
author
Use this to attribute authorship. Include this for all the classes except internal ones which are not visible to users of the library.
\subsection methods Methods and Functions Methods should be documented in the implementation (\c .cc) files where they are defined. You can put the \c brief documentation in the header file, but that may be more confusing than keeping all the method documentation in one place. Functions should be documented in their implementation files. Commands that should be used for the documentation of public methods and non-static functions:
param
Include for all parameters. Doxygen complains if an overloaded method changes a parameter name, so scan the warnings and try to keep the names in sync..
return
Include for all methods that return something unless the method is so simple its full description starts off with "Returns..."
brief
Include for all methods. In doxy.conf I have turned off the option that generates the \c brief entry from the first sentence of the detailed doc and the option that includes the \c brief documentation in the detailed documentation. So, the \c brief doc will appear only with the summary information and not with the detailed documentation for the method.
exception
Document the exceptions using the \c exception command.
*/