Changeset 7509

Show
Ignore:
Timestamp:
01/25/08 07:33:00
Author:
jcorgan
Message:

Applied changeset r7445 on trunk to release branch.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gnuradio/branches/releases/3.1/gnuradio-core/doc/Doxyfile.in

    r6198 r7509  
    1 # Doxyfile 1.4.1 
     1# Doxyfile 1.5.3 
    22 
    33# This file describes the settings to be used by the documentation system 
     
    1515#--------------------------------------------------------------------------- 
    1616 
     17# This tag specifies the encoding used for all characters in the config file that  
     18# follow. The default is UTF-8 which is also the encoding used for all text before  
     19# the first occurrence of this tag. Doxygen uses libiconv (or the iconv built into  
     20# libc) for the transcoding. See http://www.gnu.org/software/libiconv for the list of  
     21# possible encodings. 
     22 
     23DOXYFILE_ENCODING      = UTF-8 
     24 
    1725# The PROJECT_NAME tag is a single word (or a sequence of words surrounded  
    1826# by quotes) that should identify the project. 
     
    4654# information to generate all constant output in the proper language.  
    4755# The default language is English, other supported languages are:  
    48 # Brazilian, Catalan, Chinese, Chinese-Traditional, Croatian, Czech, Danish,  
    49 # Dutch, Finnish, French, German, Greek, Hungarian, Italian, Japanese,  
    50 # Japanese-en (Japanese with English messages), Korean, Korean-en, Norwegian,  
    51 # Polish, Portuguese, Romanian, Russian, Serbian, Slovak, Slovene, Spanish,  
    52 # Swedish, and Ukrainian. 
     56# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional,  
     57# Croatian, Czech, Danish, Dutch, Finnish, French, German, Greek, Hungarian,  
     58# Italian, Japanese, Japanese-en (Japanese with English messages), Korean,  
     59# Korean-en, Lithuanian, Norwegian, Polish, Portuguese, Romanian, Russian,  
     60# Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian. 
    5361 
    5462OUTPUT_LANGUAGE        = English 
    55  
    56 # This tag can be used to specify the encoding used in the generated output.  
    57 # The encoding is not always determined by the language that is chosen,  
    58 # but also whether or not the output is meant for Windows or non-Windows users.  
    59 # In case there is a difference, setting the USE_WINDOWS_ENCODING tag to YES  
    60 # forces the Windows encoding (this is the default for the Windows binary),  
    61 # whereas setting the tag to NO uses a Unix-style encoding (the default for  
    62 # all platforms other than Windows). 
    63  
    64 USE_WINDOWS_ENCODING   = NO 
    6563 
    6664# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will  
     
    136134# will interpret the first line (until the first dot) of a JavaDoc-style  
    137135# comment as the brief description. If set to NO, the JavaDoc  
    138 # comments will behave just like the Qt-style comments (thus requiring an  
    139 # explicit @brief command for a brief description. 
     136# comments will behave just like regular Qt-style comments  
     137# (thus requiring an explicit @brief command for a brief description.) 
    140138 
    141139JAVADOC_AUTOBRIEF      = NO 
     140 
     141# If the QT_AUTOBRIEF tag is set to YES then Doxygen will  
     142# interpret the first line (until the first dot) of a Qt-style  
     143# comment as the brief description. If set to NO, the comments  
     144# will behave just like regular Qt-style comments (thus requiring  
     145# an explicit \brief command for a brief description.) 
     146 
     147QT_AUTOBRIEF           = NO 
    142148 
    143149# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen  
     
    162168INHERIT_DOCS           = YES 
    163169 
    164 # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC  
    165 # tag is set to YES, then doxygen will reuse the documentation of the first  
    166 # member in the group (if any) for the other members of the group. By default  
    167 # all members of a group must be documented explicitly. 
    168  
    169 DISTRIBUTE_GROUP_DOC   = NO 
     170# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce  
     171# a new page for each member. If set to NO, the documentation of a member will  
     172# be part of the file/class/namespace that contains it. 
     173 
     174SEPARATE_MEMBER_PAGES  = NO 
    170175 
    171176# The TAB_SIZE tag can be used to set the number of spaces in a tab.  
     
    190195OPTIMIZE_OUTPUT_FOR_C  = NO 
    191196 
    192 # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java sources  
    193 # only. Doxygen will then generate output that is more tailored for Java.  
     197# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java  
     198# sources only. Doxygen will then generate output that is more tailored for Java.  
    194199# For instance, namespaces will be presented as packages, qualified scopes  
    195200# will look different, etc. 
    196201 
    197202OPTIMIZE_OUTPUT_JAVA   = NO 
     203 
     204# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to  
     205# include (a tag file for) the STL sources as input, then you should  
     206# set this tag to YES in order to let doxygen match functions declarations and  
     207# definitions whose arguments contain STL classes (e.g. func(std::string); v.s.  
     208# func(std::string) {}). This also make the inheritance and collaboration  
     209# diagrams that involve STL classes more complete and accurate. 
     210 
     211BUILTIN_STL_SUPPORT    = YES 
     212 
     213# If you use Microsoft's C++/CLI language, you should set this option to YES to 
     214# enable parsing support. 
     215 
     216CPP_CLI_SUPPORT        = NO 
     217 
     218# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC  
     219# tag is set to YES, then doxygen will reuse the documentation of the first  
     220# member in the group (if any) for the other members of the group. By default  
     221# all members of a group must be documented explicitly. 
     222 
     223DISTRIBUTE_GROUP_DOC   = NO 
    198224 
    199225# Set the SUBGROUPING tag to YES (the default) to allow class member groups of  
     
    238264 
    239265EXTRACT_LOCAL_METHODS  = NO 
     266 
     267# If this flag is set to YES, the members of anonymous namespaces will be extracted  
     268# and appear in the documentation as a namespace called 'anonymous_namespace{file}',  
     269# where file will be replaced with the base name of the file that contains the anonymous  
     270# namespace. By default anonymous namespace are hidden. 
     271 
     272EXTRACT_ANON_NSPACES   = NO 
    240273 
    241274# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all  
     
    371404# If the sources in your project are distributed over multiple directories  
    372405# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy  
    373 # in the documentation. 
    374  
    375 # -eb 
    376 SHOW_DIRECTORIES       = NO 
     406# in the documentation. The default is NO. 
     407 
     408SHOW_DIRECTORIES       = YES 
    377409 
    378410# The FILE_VERSION_FILTER tag can be used to specify a program or script that  
     
    381413# popen()) the command <command> <input-file>, where <command> is the value of  
    382414# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file  
    383 # provided by doxygen. Whatever the progam writes to standard output  
     415# provided by doxygen. Whatever the program writes to standard output  
    384416# is used as the file version. See the manual for examples. 
    385417 
     
    429461# be obtained via FILE_VERSION_FILTER) 
    430462 
    431 WARN_FORMAT            = "$file:$line: $text
     463WARN_FORMAT            = "$file:$line: $text 
    432464 
    433465# The WARN_LOGFILE tag can be used to specify a file to which warning  
     
    447479 
    448480INPUT                  = @top_srcdir@ 
     481 
     482# This tag can be used to specify the character encoding of the source files that  
     483# doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default  
     484# input encoding. Doxygen uses libiconv (or the iconv built into libc) for the transcoding.  
     485# See http://www.gnu.org/software/libiconv for the list of possible encodings. 
     486 
     487INPUT_ENCODING         = UTF-8 
    449488 
    450489# If the value of the INPUT tag contains directories, you can use the  
     
    453492# blank the following patterns are tested:  
    454493# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx  
    455 # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm 
     494# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py 
    456495 
    457496FILE_PATTERNS          = *.h \ 
    458                          *.cc
    459                          *.dox 
     497                         *.dox
     498                         *.py 
    460499 
    461500# The RECURSIVE tag can be used to turn specify whether or not subdirectories  
     
    469508# subdirectory from a directory tree whose root is specified with the INPUT tag. 
    470509 
    471 EXCLUDE                = CVS .svn .libs .deps \ 
    472                          @top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_filter.cc \ 
    473                          @top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_general.cc \ 
    474                          @top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_gengen.cc \ 
    475                          @top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_io.cc \ 
    476                          @top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_runtime.cc \ 
    477                          @top_builddir@/gr-atsc/src/lib/atsc.cc \ 
    478                          @top_builddir@/gr-audio-alsa/src/audio_alsa.cc \ 
    479                          @top_builddir@/gr-audio-jack/src/audio_jack.cc \ 
    480                          @top_builddir@/gr-audio-oss/src/audio_oss.cc \ 
    481                          @top_builddir@/gr-audio-osx/src/audio_osx.cc \ 
    482                          @top_builddir@/gr-audio-portaudio/src/audio_portaudio.cc \ 
    483                          @top_builddir@/gr-audio-windows/src/audio_windows.cc \ 
    484                          @top_builddir@/gr-comedi/src/comedi.cc \ 
    485                          @top_builddir@/gr-gsm-fr-vocoder/src/lib/gsm_full_rate.cc \ 
    486                          @top_builddir@/gr-howto-write-a-block/src/lib/howto.cc \ 
    487                          @top_builddir@/gr-pager/src/pager_swig.cc \ 
    488                          @top_builddir@/gr-radio-astronomy/src/lib/ra.cc \ 
    489                          @top_builddir@/gr-trellis/src/lib/trellis.cc \ 
    490                          @top_builddir@/gr-usrp/src/usrp1.cc \ 
    491                          @top_builddir@/gr-video-sdl/src/video_sdl.cc 
    492                          @top_srcdir@/usrp 
     510# We split these by top_srcdir and top_builddir (this matters in a VPATH build) 
     511 
     512EXCLUDE  = \ 
     513        @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_filter.cc \ 
     514        @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_filter.py \ 
     515        @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_general.cc \ 
     516        @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_general.py \ 
     517        @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_gengen.cc \ 
     518        @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_gengen.py \ 
     519        @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_io.cc \ 
     520        @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_io.py \ 
     521        @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_runtime.cc \ 
     522        @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_py_runtime.py \ 
     523        @abs_top_builddir@/gnuradio-core/src/lib/swig/gnuradio_swig_python.py \ 
     524        @abs_top_builddir@/gr-atsc/src/lib/atsc.cc \ 
     525        @abs_top_builddir@/gr-atsc/src/lib/atsc.py \ 
     526        @abs_top_builddir@/gr-audio-oss/src/audio_oss.py \ 
     527        @abs_top_builddir@/gr-audio-osx/src/test_audio_loop.py \ 
     528        @abs_top_builddir@/gr-cvsd-vocoder/src/lib/cvsd_vocoder.py \     
     529        @abs_top_builddir@/gr-cvsd-vocoder/src/python/encdec.py \        
     530        @abs_top_builddir@/gr-gsm-fr-vocoder/src/lib/gsm \ 
     531        @abs_top_builddir@/gr-gsm-fr-vocoder/src/lib/gsm_full_rate.py \  
     532        @abs_top_builddir@/gr-gsm-fr-vocoder/src/python/encdec.py \      
     533        @abs_top_builddir@/gr-pager/src/pager_swig.py \ 
     534        @abs_top_builddir@/gr-radar-mono/src/python/usrp_radar_mono.py \ 
     535        @abs_top_builddir@/gr-trellis/src/lib/trellis.py \ 
     536        @abs_top_builddir@/gr-usrp/src/usrp1.py \ 
     537        @abs_top_builddir@/gr-video-sdl/src/video_sdl.py \ 
     538        @abs_top_builddir@/usrp/host/swig \ 
     539        @abs_top_srcdir@/docs \ 
     540        @abs_top_srcdir@/dtools \ 
     541        @abs_top_srcdir@/gnuradio-core/doc/doxypy/doxypy.py \ 
     542        @abs_top_srcdir@/gnuradio-core/doc/xml \ 
     543        @abs_top_srcdir@/gnuradio-core/src/lib/bug_work_around_6.cc \ 
     544        @abs_top_srcdir@/gnuradio-core/src/lib/filter/assembly.h \ 
     545        @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_all.py \ 
     546        @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_gr_fir_XXX.py \ 
     547        @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_gr_fir_filter_XXX.py \ 
     548        @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_gr_fir_sysconfig.py \ 
     549        @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_gr_fir_sysconfig_generic.py \ 
     550        @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_gr_fir_util.py \ 
     551        @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_gr_freq_xlating_fir_filter_XXX.py \ 
     552        @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_gr_interp_fir_filter_XXX.py \ 
     553        @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_gr_rational_resampler_base_XXX.py \ 
     554        @abs_top_srcdir@/gnuradio-core/src/lib/filter/generate_utils.py \ 
     555        @abs_top_srcdir@/gnuradio-core/src/lib/filter/sse_debug.h \ 
     556        @abs_top_srcdir@/gnuradio-core/src/lib/gengen/generate_all.py \ 
     557        @abs_top_srcdir@/gnuradio-core/src/lib/gengen/generate_common.py \ 
     558        @abs_top_srcdir@/gnuradio-core/src/lib/missing/bug_work_around_8.cc \ 
     559        @abs_top_srcdir@/gnuradio-core/src/lib/runtime/gr_error_handler.cc \ 
     560        @abs_top_srcdir@/gnuradio-core/src/python/bin \ 
     561        @abs_top_srcdir@/gnuradio-core/src/python/build_utils.py \ 
     562        @abs_top_srcdir@/gnuradio-core/src/python/build_utils_codes.py \ 
     563        @abs_top_srcdir@/gnuradio-core/src/python/gnuradio/gr/gr_threading.py \ 
     564        @abs_top_srcdir@/gnuradio-core/src/python/gnuradio/gr/gr_threading_23.py \ 
     565        @abs_top_srcdir@/gnuradio-core/src/python/gnuradio/gr/gr_threading_24.py \ 
     566        @abs_top_srcdir@/gnuradio-core/src/tests \ 
     567        @abs_top_srcdir@/gnuradio-core/src/utils \ 
     568        @abs_top_srcdir@/gr-atsc/src/lib/gen_encoder.py \ 
     569        @abs_top_srcdir@/gr-atsc/src/python \ 
     570        @abs_top_srcdir@/gr-howto-write-a-block \ 
     571        @abs_top_srcdir@/gr-qtgui \ 
     572        @abs_top_srcdir@/gr-sounder/src/python/usrp_sounder.py \ 
     573        @abs_top_srcdir@/gr-trellis/doc \ 
     574        @abs_top_srcdir@/gr-trellis/src/lib/generate_all.py \ 
     575        @abs_top_srcdir@/gr-trellis/src/lib/generate_trellis.py \ 
     576        @abs_top_srcdir@/usrp/doc \ 
     577        @abs_top_srcdir@/usrp/firmware \ 
     578        @abs_top_srcdir@/usrp/fpga \ 
     579        @abs_top_srcdir@/usrp/host/apps \ 
     580        @abs_top_srcdir@/usrp/host/apps-inband \ 
     581        @abs_top_srcdir@/usrp/host/lib/inband \ 
     582        @abs_top_srcdir@/usrp/host/lib/legacy/ad9862.h \ 
     583        @abs_top_srcdir@/usrp/host/lib/legacy/check_data.py \ 
     584        @abs_top_srcdir@/usrp/host/lib/legacy/circular_buffer.h \ 
     585        @abs_top_srcdir@/usrp/host/lib/legacy/circular_linked_list.h \ 
     586        @abs_top_srcdir@/usrp/host/lib/legacy/dump_data.py \ 
     587        @abs_top_srcdir@/usrp/host/lib/legacy/gen_usrp_dbid.py \ 
     588        @abs_top_srcdir@/usrp/host/lib/legacy/usrp_dbid.py \ 
     589        @abs_top_srcdir@/usrp/host/misc \ 
     590        @abs_top_srcdir@/usrp/host/swig 
     591 
    493592 
    494593# The EXCLUDE_SYMLINKS tag can be used select whether or not files or  
     
    500599# If the value of the INPUT tag contains directories, you can use the  
    501600# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude  
    502 # certain files from those directories. 
    503  
    504 EXCLUDE_PATTERNS       = moc_*.cc 
     601# certain files from those directories. Note that the wildcards are matched  
     602# against the file with absolute path, so to exclude all test directories  
     603# for example use the pattern */test/* 
     604 
     605EXCLUDE_PATTERNS       = \ 
     606        */.deps/* \ 
     607        */.libs/* \ 
     608        */.svn/* \ 
     609        */CVS/* \ 
     610        */__init__.py \ 
     611        */gr-atsc/src/lib/Gr* \ 
     612        */moc_*.cc \ 
     613        */omnithread/ot_* \ 
     614        */qa_*.cc \ 
     615        */qa_*.h \ 
     616        */qa_*.py 
     617 
     618 
     619 
     620# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names  
     621# (namespaces, classes, functions, etc.) that should be excluded from the output.  
     622# The symbol name can be a fully qualified name, a word, or if the wildcard * is used,  
     623# a substring. Examples: ANamespace, AClass, AClass::ANamespace, ANamespace::*Test 
     624 
     625EXCLUDE_SYMBOLS        = ad9862 \ 
     626                        numpy \ 
     627                        usrpm 
    505628 
    506629# The EXAMPLE_PATH tag can be used to specify one or more files or  
     
    547670# is applied to all files. 
    548671 
    549 FILTER_PATTERNS        =  
    550  
    551 # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using  
     672FILTER_PATTERNS        = *.py=@top_srcdir@/gnuradio-core/doc/other/doxypy.py 
     673                 
     674 
     675# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 
    552676# INPUT_FILTER) will be used to filter the input files when producing source  
    553677# files to browse (i.e. when SOURCE_BROWSER is set to YES). 
    554678 
    555 FILTER_SOURCE_FILES    = NO 
     679FILTER_SOURCE_FILES    = YES 
    556680 
    557681#--------------------------------------------------------------------------- 
     
    562686# be generated. Documented entities will be cross-referenced with these sources.  
    563687# Note: To get rid of all source code in the generated output, make sure also  
    564 # VERBATIM_HEADERS is set to NO. 
     688# VERBATIM_HEADERS is set to NO. If you have enabled CALL_GRAPH or CALLER_GRAPH  
     689# then you must also enable this option. If you don't then doxygen will produce  
     690# a warning and turn it on anyway 
    565691 
    566692SOURCE_BROWSER         = NO 
     
    588714 
    589715REFERENCES_RELATION    = YES 
     716 
     717# If the REFERENCES_LINK_SOURCE tag is set to YES (the default) 
     718# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from 
     719# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will 
     720# link to the source code.  Otherwise they will link to the documentstion. 
     721 
     722REFERENCES_LINK_SOURCE = YES 
     723 
     724# If the USE_HTAGS tag is set to YES then the references to source code  
     725# will point to the HTML generated by the htags(1) tool instead of doxygen  
     726# built-in source browser. The htags tool is part of GNU's global source  
     727# tagging system (see http://www.gnu.org/software/global/global.html). You  
     728# will need version 4.8.6 or higher. 
     729 
     730USE_HTAGS              = NO 
    590731 
    591732# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen  
     
    673814GENERATE_HTMLHELP      = NO 
    674815 
     816# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML  
     817# documentation will contain sections that can be hidden and shown after the  
     818# page has loaded. For this to work a browser that supports  
     819# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox  
     820# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). 
     821 
     822HTML_DYNAMIC_SECTIONS  = NO 
     823 
    675824# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can  
    676825# be used to specify the file name of the resulting .chm file. You  
     
    737886# generate Latex output. 
    738887 
    739 # -eb 
    740888GENERATE_LATEX         = NO 
    741889 
     
    8851033# the code including all documentation. 
    8861034 
    887 GENERATE_XML           = YES 
     1035GENERATE_XML           = NO 
    8881036 
    8891037# The XML_OUTPUT tag is used to specify where the XML pages will be put.  
     
    9101058# enabling this will significantly increase the size of the XML output. 
    9111059 
    912 # -eb 
    9131060XML_PROGRAMLISTING     = NO 
    9141061 
     
    9771124# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES  
    9781125# then the macro expansion is limited to the macros specified with the  
    979 # PREDEFINED and EXPAND_AS_PREDEFINED tags. 
     1126# PREDEFINED and EXPAND_AS_DEFINED tags. 
    9801127 
    9811128EXPAND_ONLY_PREDEF     = NO 
     
    10801227CLASS_DIAGRAMS         = YES 
    10811228 
     1229# You can define message sequence charts within doxygen comments using the \msc  
     1230# command. Doxygen will then run the mscgen tool (see http://www.mcternan.me.uk/mscgen/) to  
     1231# produce the chart and insert it in the documentation. The MSCGEN_PATH tag allows you to  
     1232# specify the directory where the mscgen tool resides. If left empty the tool is assumed to  
     1233# be found in the default search path. 
     1234 
     1235MSCGEN_PATH            =  
     1236 
    10821237# If set to YES, the inheritance and collaboration graphs will hide  
    10831238# inheritance and usage relations if the target is undocumented  
     
    11371292INCLUDED_BY_GRAPH      = YES 
    11381293 
    1139 # If the CALL_GRAPH and HAVE_DOT tags are set to YES then doxygen will  
     1294# If the CALL_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES then doxygen will  
    11401295# generate a call dependency graph for every global function or class method.  
    11411296# Note that enabling this option will significantly increase the time of a run.  
     
    11451300CALL_GRAPH             = NO 
    11461301 
     1302# If the CALLER_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES then doxygen will  
     1303# generate a caller dependency graph for every global function or class method.  
     1304# Note that enabling this option will significantly increase the time of a run.  
     1305# So in most cases it will be better to enable caller graphs for selected  
     1306# functions only using the \callergraph command. 
     1307 
     1308CALLER_GRAPH           = NO 
     1309 
    11471310# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen  
    11481311# will graphical hierarchy of all classes instead of a textual one. 
     
    11741337DOTFILE_DIRS           =  
    11751338 
    1176 # The MAX_DOT_GRAPH_WIDTH tag can be used to set the maximum allowed width  
    1177 # (in pixels) of the graphs generated by dot. If a graph becomes larger than  
    1178 # this value, doxygen will try to truncate the graph, so that it fits within  
    1179 # the specified constraint. Beware that most browsers cannot cope with very  
    1180 # large images. 
    1181  
    1182 MAX_DOT_GRAPH_WIDTH    = 1024 
    1183  
    1184 # The MAX_DOT_GRAPH_HEIGHT tag can be used to set the maximum allows height  
    1185 # (in pixels) of the graphs generated by dot. If a graph becomes larger than  
    1186 # this value, doxygen will try to truncate the graph, so that it fits within  
    1187 # the specified constraint. Beware that most browsers cannot cope with very  
    1188 # large images. 
    1189  
    1190 MAX_DOT_GRAPH_HEIGHT   = 1024 
     1339# The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of  
     1340# nodes that will be shown in the graph. If the number of nodes in a graph  
     1341# becomes larger than this value, doxygen will truncate the graph, which is  
     1342# visualized by representing a node as a red box. Note that doxygen if the number  
     1343# of direct children of the root node in a graph is already larger than  
     1344# MAX_DOT_GRAPH_NOTES then the graph will not be shown at all. Also note  
     1345# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. 
     1346 
     1347DOT_GRAPH_MAX_NODES    = 50 
    11911348 
    11921349# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the  
     
    11951352# that lay further from the root node will be omitted. Note that setting this  
    11961353# option to 1 or 2 may greatly reduce the computation time needed for large  
    1197 # code bases. Also note that a graph may be further truncated if the graph's  
    1198 # image dimensions are not sufficient to fit the graph (see MAX_DOT_GRAPH_WIDTH  
    1199 # and MAX_DOT_GRAPH_HEIGHT). If 0 is used for the depth value (the default),  
    1200 # the graph is not depth-constrained. 
     1354# code bases. Also note that the size of a graph can be further restricted by  
     1355# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. 
    12011356 
    12021357MAX_DOT_GRAPH_DEPTH    = 0 
     
    12151370# support this, this feature is disabled by default. 
    12161371 
    1217 # -eb 
    12181372DOT_MULTI_TARGETS      = YES 
    12191373 
  • gnuradio/branches/releases/3.1/gnuradio-core/doc/other/Makefile.am

    r6044 r7509  
    2323 
    2424EXTRA_DIST = \ 
    25         tv-channel-frequencies          \ 
    26         vector_docstub.h                \ 
    27         shared_ptr_docstub.h            \ 
    28         omnithread.html                 \ 
    29         omnithread.pdf                  \ 
    30         omnithread.ps                   \ 
    31         group_defs.dox                   
     25        doxypy.py \ 
     26        group_defs.dox \ 
     27        omnithread.html \ 
     28        omnithread.pdf \ 
     29        omnithread.ps \ 
     30        shared_ptr_docstub.h \ 
     31        tv-channel-frequencies \ 
     32        vector_docstub.h 
  • gnuradio/branches/releases/3.1/gnuradio-core/doc/other/group_defs.dox

    r658 r7509  
    11/*! 
    22 * \defgroup block Signal Processing Blocks 
    3  * These are the signal processing blocks, blah, blah blah... 
     3 * These are the signal processing blocks... 
    44 * @{ 
    55 */ 
     
    2323 */ 
    2424 
     25/*! 
     26 * \defgroup level Signal Level Control 
     27 */ 
     28 
     29/*! 
     30 * \defgroup clock Signal Clock Synchronization 
     31 */ 
     32 
    2533/*! @} */ 
    2634 
    27 /*! \defgroup filter_design Filter Design             */ 
    28 /*! \defgroup filter_primitive Filter Primitives      */ 
     35/*! \defgroup filter_design Digital Filter Design             */ 
     36/*! \defgroup graphical Graphical Utilities           */ 
    2937/*! \defgroup internal Implementation Details           */ 
    30 /*! \defgroup qa Quality Assurance                      */ 
     38/*! \defgroup hardware Hardware                         */ 
     39/*! \defgroup encdec Voice Encoders and Decoders        */ 
     40/*! \defgroup coding Information Coding and Decoding                    */ 
     41/*! \defgroup modulation Signal Modulation                      */ 
     42/*! \defgroup demodulation Signal Demodulation                  */ 
     43/*! \defgroup math      Mathmatics                      */ 
     44/*! \defgroup tools Tools                               */ 
     45/*! \defgroup misc Miscellaneous                                */ 
     46/*! 
     47 * \defgroup applications Applications 
     48 * These are some applications build using gnuradio... 
     49 * @{ 
     50 */ 
    3151 
     52/*! 
     53 * \defgroup radar Radar 
     54 * Radar Applications... 
     55 */ 
     56 
     57/*! 
     58 * \defgroup atsc ATSC 
     59 * ATSC Applications... 
     60 */ 
     61 
     62/*! 
     63 * \defgroup pager Pager  
     64 * Pager Applications 
     65 */ 
     66 
     67/*! 
     68 * \defgroup sounder    Sounder 
     69 * Channel Sounder 
     70 */ 
     71 
     72/*! @} */ 
     73 
     74/*! \defgroup usrp USRP */