From 5e6e0a729359d177cf61e0e0d9fc52e371e68e88 Mon Sep 17 00:00:00 2001 From: wonder Date: Tue, 28 Oct 2008 23:00:54 +0000 Subject: [PATCH] Updated doxygen config to document only QGIS API. git-svn-id: http://svn.osgeo.org/qgis/trunk@9554 c8812cc2-4d05-0410-92ff-de0c093fc19c --- Doxyfile | 13 ++++++++----- doc/modules.dox | 17 ++++++++++++----- 2 files changed, 20 insertions(+), 10 deletions(-) diff --git a/Doxyfile b/Doxyfile index 7cb2bcac3c58..189c2ede560f 100644 --- a/Doxyfile +++ b/Doxyfile @@ -472,8 +472,13 @@ WARN_LOGFILE = # with spaces. INPUT = doc \ - src \ - tests + src/core \ + src/core/composer \ + src/core/raster \ + src/core/renderer \ + src/core/symbology \ + src/gui \ + src/plugins # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp @@ -484,15 +489,13 @@ INPUT = doc \ FILE_PATTERNS = *.h \ *.cpp \ - src/core/spatialindex/* \ - src/core/spatialindex/storagemanager/*.** \ *.dox # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. -RECURSIVE = YES +RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a diff --git a/doc/modules.dox b/doc/modules.dox index 21d89f771d65..a0da32ae2e58 100644 --- a/doc/modules.dox +++ b/doc/modules.dox @@ -1,5 +1,12 @@ -/** @defgroup library */ -/** @defgroup gui */ -/** @defgroup core*/ -/** @defgroup MapComposer*/ -/** @defgroup UnitTests*/ +/** @defgroup core + +QGIS core library. Contains all basic GIS functionality. + +*/ + +/** @defgroup gui + +QGIS gui library. It's built on top of core library and adds reusable GUI widgets. +*/ + +/** @defgroup MapComposer */