Browse Source

Exclude OpenGL versions of Graphics library classes from Doxygen documentation to avoid classes being listed twice.

Lasse Öörni 13 years ago
parent
commit
eea6559d7c
2 changed files with 3 additions and 2 deletions
  1. 2 1
      Doxyfile
  2. 1 1
      Engine/Audio/Audio.h

+ 2 - 1
Doxyfile

@@ -707,7 +707,8 @@ EXCLUDE_SYMLINKS       = NO
 # for example use the pattern */test/*
 # for example use the pattern */test/*
 
 
 EXCLUDE_PATTERNS       = */*API*.cpp \
 EXCLUDE_PATTERNS       = */*API*.cpp \
-                         */*API*.h
+                         */*API*.h \
+                         */OpenGL/*
 
 
 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 
 # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 
 # (namespaces, classes, functions, etc.) that should be excluded from the 
 # (namespaces, classes, functions, etc.) that should be excluded from the 

+ 1 - 1
Engine/Audio/Audio.h

@@ -37,7 +37,7 @@ class AudioImpl;
 class Sound;
 class Sound;
 class SoundSource;
 class SoundSource;
 
 
-/// %Audio subsystem. Uses either DirectSound or SDL for sound output
+/// %Audio subsystem.
 class Audio : public Object
 class Audio : public Object
 {
 {
     OBJECT(Audio);
     OBJECT(Audio);