| OLD | NEW |
| 1 # Doxyfile 1.8.6 | 1 # Doxyfile 1.8.6 |
| 2 | 2 |
| 3 # This file describes the settings to be used by the documentation system | 3 # This file describes the settings to be used by the documentation system |
| 4 # doxygen (www.doxygen.org) for a project. | 4 # doxygen (www.doxygen.org) for a project. |
| 5 # | 5 # |
| 6 # All text after a double hash (##) is considered a comment and is placed in | 6 # All text after a double hash (##) is considered a comment and is placed in |
| 7 # front of the TAG it is preceding. | 7 # front of the TAG it is preceding. |
| 8 # | 8 # |
| 9 # All text after a single hash (#) is considered a comment and will be ignored. | 9 # All text after a single hash (#) is considered a comment and will be ignored. |
| 10 # The format is: | 10 # The format is: |
| (...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 434 | 434 |
| 435 EXTRACT_LOCAL_METHODS = NO | 435 EXTRACT_LOCAL_METHODS = NO |
| 436 | 436 |
| 437 # If this flag is set to YES, the members of anonymous namespaces will be | 437 # If this flag is set to YES, the members of anonymous namespaces will be |
| 438 # extracted and appear in the documentation as a namespace called | 438 # extracted and appear in the documentation as a namespace called |
| 439 # 'anonymous_namespace{file}', where file will be replaced with the base name of | 439 # 'anonymous_namespace{file}', where file will be replaced with the base name of |
| 440 # the file that contains the anonymous namespace. By default anonymous namespace | 440 # the file that contains the anonymous namespace. By default anonymous namespace |
| 441 # are hidden. | 441 # are hidden. |
| 442 # The default value is: NO. | 442 # The default value is: NO. |
| 443 | 443 |
| 444 EXTRACT_ANON_NSPACES = NO | 444 EXTRACT_ANON_NSPACES = YES |
| 445 | 445 |
| 446 # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all | 446 # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all |
| 447 # undocumented members inside documented classes or files. If set to NO these | 447 # undocumented members inside documented classes or files. If set to NO these |
| 448 # members will be included in the various overviews, but no documentation | 448 # members will be included in the various overviews, but no documentation |
| 449 # section is generated. This option has no effect if EXTRACT_ALL is enabled. | 449 # section is generated. This option has no effect if EXTRACT_ALL is enabled. |
| 450 # The default value is: NO. | 450 # The default value is: NO. |
| 451 | 451 |
| 452 HIDE_UNDOC_MEMBERS = NO | 452 HIDE_UNDOC_MEMBERS = NO |
| 453 | 453 |
| 454 # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all | 454 # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all |
| (...skipping 1839 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2294 # This tag requires that the tag HAVE_DOT is set to YES. | 2294 # This tag requires that the tag HAVE_DOT is set to YES. |
| 2295 | 2295 |
| 2296 GENERATE_LEGEND = YES | 2296 GENERATE_LEGEND = YES |
| 2297 | 2297 |
| 2298 # If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot | 2298 # If the DOT_CLEANUP tag is set to YES doxygen will remove the intermediate dot |
| 2299 # files that are used to generate the various graphs. | 2299 # files that are used to generate the various graphs. |
| 2300 # The default value is: YES. | 2300 # The default value is: YES. |
| 2301 # This tag requires that the tag HAVE_DOT is set to YES. | 2301 # This tag requires that the tag HAVE_DOT is set to YES. |
| 2302 | 2302 |
| 2303 DOT_CLEANUP = YES | 2303 DOT_CLEANUP = YES |
| OLD | NEW |