Develop and Download Open Source Software

Browse Subversion Repository

Diff of /Doxyfile

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 126 by satofumi, Fri Nov 2 11:36:31 2007 UTC revision 127 by satofumi, Sun Nov 4 05:04:05 2007 UTC
# Line 1  Line 1 
1  # Doxyfile 1.5.3  # Doxyfile 1.5.4
2    
3  # This file describes the settings to be used by the documentation system  # This file describes the settings to be used by the documentation system
4  # doxygen (www.doxygen.org) for a project  # doxygen (www.doxygen.org) for a project
# Line 215  BUILTIN_STL_SUPPORT    = NO Line 215  BUILTIN_STL_SUPPORT    = NO
215    
216  CPP_CLI_SUPPORT        = NO  CPP_CLI_SUPPORT        = NO
217    
218    # Set the SIP_SUPPORT tag to YES if your project consists of sip sources only.
219    # Doxygen will parse them like normal C++ but will assume all classes use public
220    # instead of private inheritance when no explicit protection keyword is present.
221    
222    SIP_SUPPORT            = NO
223    
224  # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC  # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
225  # tag is set to YES, then doxygen will reuse the documentation of the first  # tag is set to YES, then doxygen will reuse the documentation of the first
226  # member in the group (if any) for the other members of the group. By default  # member in the group (if any) for the other members of the group. By default
# Line 230  DISTRIBUTE_GROUP_DOC   = NO Line 236  DISTRIBUTE_GROUP_DOC   = NO
236    
237  SUBGROUPING            = YES  SUBGROUPING            = YES
238    
239    # When TYPEDEF_HIDES_STRUCT is enabled, a typedef of a struct (or union) is
240    # documented as struct with the name of the typedef. So
241    # typedef struct TypeS {} TypeT, will appear in the documentation as a struct
242    # with name TypeT. When disabled the typedef will appear as a member of a file,
243    # namespace, or class. And the struct will be named TypeS. This can typically
244    # be useful for C code where the coding convention is that all structs are
245    # typedef'ed and only the typedef is referenced never the struct's name.
246    
247    TYPEDEF_HIDES_STRUCT   = NO
248    
249  #---------------------------------------------------------------------------  #---------------------------------------------------------------------------
250  # Build related configuration options  # Build related configuration options
251  #---------------------------------------------------------------------------  #---------------------------------------------------------------------------
# Line 460  WARN_NO_PARAMDOC       = NO Line 476  WARN_NO_PARAMDOC       = NO
476  # $version, which will be replaced by the version of the file (if it could  # $version, which will be replaced by the version of the file (if it could
477  # be obtained via FILE_VERSION_FILTER)  # be obtained via FILE_VERSION_FILTER)
478    
479  WARN_FORMAT            = "$file:$line: $text "  WARN_FORMAT            = "$file:$line: $text  "
480    
481  # The WARN_LOGFILE tag can be used to specify a file to which warning  # The WARN_LOGFILE tag can be used to specify a file to which warning
482  # and error messages should be written. If left blank the output is written  # and error messages should be written. If left blank the output is written
# Line 491  INPUT_ENCODING         = UTF-8 Line 507  INPUT_ENCODING         = UTF-8
507  # and *.h) to filter out the source-files in the directories. If left  # and *.h) to filter out the source-files in the directories. If left
508  # blank the following patterns are tested:  # blank the following patterns are tested:
509  # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx  # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx
510  # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py  # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90
511    
512  FILE_PATTERNS          = *.h \  FILE_PATTERNS          = *.h \
513                           *.cpp \                           *.cpp \
514                           *.rb \                           *.rb \
515                           *.dox                           *.dox
516    
517  # The RECURSIVE tag can be used to turn specify whether or not subdirectories  # The RECURSIVE tag can be used to turn specify whether or not subdirectories
# Line 522  EXCLUDE_SYMLINKS       = NO Line 538  EXCLUDE_SYMLINKS       = NO
538  # against the file with absolute path, so to exclude all test directories  # against the file with absolute path, so to exclude all test directories
539  # for example use the pattern */test/*  # for example use the pattern */test/*
540    
541  EXCLUDE_PATTERNS       = */old_gui/* */Test*.h */Test*.cpp  EXCLUDE_PATTERNS       = */old_gui/* \
542                             */Test*.h \
543                             */Test*.cpp
544    
545  # 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
546  # (namespaces, classes, functions, etc.) that should be excluded from the output.  # (namespaces, classes, functions, etc.) that should be excluded from the output.
# Line 535  EXCLUDE_SYMBOLS        = Line 553  EXCLUDE_SYMBOLS        =
553  # directories that contain example code fragments that are included (see  # directories that contain example code fragments that are included (see
554  # the \include command).  # the \include command).
555    
556  EXAMPLE_PATH           = . rangesCtrl/samples  EXAMPLE_PATH           = . \
557                             rangesCtrl/samples
558    
559  # If the value of the EXAMPLE_PATH tag contains directories, you can use the  # If the value of the EXAMPLE_PATH tag contains directories, you can use the
560  # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp  # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp
# Line 555  EXAMPLE_RECURSIVE      = NO Line 574  EXAMPLE_RECURSIVE      = NO
574  # directories that contain image that are included in the documentation (see  # directories that contain image that are included in the documentation (see
575  # the \image command).  # the \image command).
576    
577  IMAGE_PATH             = img/ rangesCtrl/img/  IMAGE_PATH             = img/ \
578                             rangesCtrl/img/
579    
580  # The INPUT_FILTER tag can be used to specify a program that doxygen should  # The INPUT_FILTER tag can be used to specify a program that doxygen should
581  # invoke to filter for each input file. Doxygen will invoke the filter program  # invoke to filter for each input file. Doxygen will invoke the filter program
# Line 565  IMAGE_PATH             = img/ rangesCtrl Line 585  IMAGE_PATH             = img/ rangesCtrl
585  # to standard output.  If FILTER_PATTERNS is specified, this tag will be  # to standard output.  If FILTER_PATTERNS is specified, this tag will be
586  # ignored.  # ignored.
587    
588  INPUT_FILTER           = "/usr/bin/nkf -S -w"  INPUT_FILTER           = "/usr/bin/nkf -S -w "
589    
590  # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern  # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
591  # basis.  Doxygen will compare the file name with each pattern and apply the  # basis.  Doxygen will compare the file name with each pattern and apply the

Legend:
Removed from v.126  
changed lines
  Added in v.127

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26