]> rtime.felk.cvut.cz Git - pes-rpp/rpp-lib.git/commitdiff
Fixed Doxygen documentation generation.
authorCarlos Jenkins <carlos@jenkins.co.cr>
Mon, 3 Jun 2013 18:27:36 +0000 (20:27 +0200)
committerCarlos Jenkins <carlos@jenkins.co.cr>
Mon, 3 Jun 2013 18:27:36 +0000 (20:27 +0200)
rpp/doc/api/doxygen.conf
rpp/include/base.h
rpp/include/types.h

index 2c94305ddc427fe8164613c40c023658a2f7ed43..abafaf773ed7ba6c9b99076d2a944082506c4330 100644 (file)
@@ -666,7 +666,7 @@ INPUT_ENCODING         = UTF-8
 # *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py
 # *.f90 *.f *.for *.vhd *.vhdl
 
-FILE_PATTERNS          =
+FILE_PATTERNS          = *.h
 
 # 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.
@@ -1486,14 +1486,14 @@ SEARCH_INCLUDES        = YES
 # contain include files that are not input files but should be processed by
 # the preprocessor.
 
-INCLUDE_PATH           =
+INCLUDE_PATH           = ../../include/ ../../include/os/
 
 # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
 # patterns (like *.h and *.hpp) to filter out the header-files in the
 # directories. If left blank, the patterns specified with FILE_PATTERNS will
 # be used.
 
-INCLUDE_FILE_PATTERNS  =
+INCLUDE_FILE_PATTERNS  = *.h
 
 # The PREDEFINED tag can be used to specify one or more macro names that
 # are defined before the preprocessor is started (similar to the -D option of
@@ -1597,7 +1597,7 @@ HIDE_UNDOC_RELATIONS   = YES
 # toolkit from AT&T and Lucent Bell Labs. The other options in this section
 # have no effect if this option is set to NO (the default)
 
-HAVE_DOT               = NO
+HAVE_DOT               = YES
 
 # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is
 # allowed to run in parallel. When set to 0 (the default) doxygen will
@@ -1639,12 +1639,12 @@ CLASS_GRAPH            = YES
 # indirect implementation dependencies (inheritance, containment, and
 # class references variables) of the class with other documented classes.
 
-COLLABORATION_GRAPH    = YES
+COLLABORATION_GRAPH    = NO
 
 # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen
 # will generate a graph for groups, showing the direct groups dependencies
 
-GROUP_GRAPHS           = YES
+GROUP_GRAPHS           = NO
 
 # If the UML_LOOK tag is set to YES doxygen will generate inheritance and
 # collaboration diagrams in a style similar to the OMG's Unified Modeling
index c5be2a6185a599423c5c438a8811aafce2211106..ffd612c817484df439ad667384b829ae43754a79 100644 (file)
 #define __BASE_H
 
 // Base includes
-#include "os/os.h"
 #include "types.h"
 #include "binary.h"
-
+#include "os/os.h"
 
 // General IO directives
 /**
index 7c6a1396e8471f09a5b95a3acf03a878fac8275c..81d850478b785fdd34068d9de428d8e37563737f 100644 (file)
 #ifndef __RPP_TYPES_H
 #define __RPP_TYPES_H
 
+
+#ifndef NULL
 /**
  * NULL definition
  */
-#ifndef NULL
 #define NULL ((void *) 0U)
 #endif