From 832eeb10b9c32a8e04641e2595919034285e7c3c Mon Sep 17 00:00:00 2001 From: EndrII <EndrIIMail@gmail.com> Date: Tue, 29 Nov 2022 11:23:47 +0300 Subject: [PATCH] fix docs --- .gitignore | 2 +- .gitmodules | 7 +- CMakeLists.txt | 39 +- QuasarAppLib | 1 - doxygen.conf | 145 +- doxygen.conf.in | 2497 +++++++++++++++++++++++++++++++++++ res/Logo_Web_alpha.png | Bin 0 -> 75778 bytes src/CMakeLists.txt | 1 - src/heart_global.h.in | 3 +- src/public/abstractnode.cpp | 1 + submodules/QuasarAppLib | 1 + 11 files changed, 2588 insertions(+), 109 deletions(-) delete mode 160000 QuasarAppLib create mode 100644 doxygen.conf.in create mode 100644 res/Logo_Web_alpha.png create mode 160000 submodules/QuasarAppLib diff --git a/.gitignore b/.gitignore index 4ec7f1f..ef0421c 100644 --- a/.gitignore +++ b/.gitignore @@ -60,6 +60,6 @@ HeartTests/cmake_install.cmake cmake_install.cmake docs/ src/heart_global.h - +doxygen.conf # git *.orig diff --git a/.gitmodules b/.gitmodules index 5d41ae3..d50a29e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,6 @@ -[submodule "QuasarAppLib"] - path = QuasarAppLib - url = https://github.com/QuasarApp/QuasarAppLib.git - [submodule "submodules/crc"] path = submodules/crc url = https://github.com/QuasarApp/crc.git +[submodule "submodules/QuasarAppLib"] + path = submodules/QuasarAppLib + url = https://github.com/QuasarApp/QuasarAppLib.git diff --git a/CMakeLists.txt b/CMakeLists.txt index 08eccd4..f8b7962 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,8 +13,8 @@ if(TARGET ${PROJECT_NAME}) return() endif() -include(QuasarAppLib/CMake/QuasarApp.cmake) -include(QuasarAppLib/CMake/Version.cmake) +include(submodules/QuasarAppLib/CMake/QuasarApp.cmake) +include(submodules/QuasarAppLib/CMake/Version.cmake) if (DEFINED TARGET_PLATFORM_TOOLCHAIN) if (${TARGET_PLATFORM_TOOLCHAIN} STREQUAL "wasm32") @@ -23,26 +23,14 @@ if (DEFINED TARGET_PLATFORM_TOOLCHAIN) endif() endif() -if(NOT DEFINED HEART_BUILD_LVL) - set(HEART_BUILD_LVL 1) +updateGitVars() +set(HEART_VERSION 1.2.${GIT_COMMIT_COUNT}.${GIT_COMMIT_HASH}) + +if (ANDROID OR IOS) + option(HEART_TESTS "Enable or disable tests of the heart library" OFF) +else() + option(HEART_TESTS "Enable or disable tests of the heart library" ON) endif() - -if (NOT DEFINED HEART_TESTS) - set(HEART_TESTS ON) - - if (ANDROID OR IOS) - set(HEART_TESTS OFF) - endif() -endif() - -if (NOT DEFINED HEART_DB_CACHE) - set(HEART_DB_CACHE OFF) - - if (ANDROID OR WIN32) - set(HEART_DB_CACHE OFF) - endif() -endif() - # Use only for android debug builds with debugging from usb. option(HEART_STATIC_SSL "This option enable or disabled static link ssl libraryes" OFF) option(CMAKE_SHARE "This option enable or disabled ssl functions of nodes" OFF) @@ -54,16 +42,11 @@ else() option(HEART_SSL "This option enable or disabled ssl functions of nodes" ON) endif() - -if (HEART_DB_CACHE) - add_definitions(-DHEART_DB_CACHE) -endif() - # Add sub directories find_package(QT NAMES Qt6 Qt5 COMPONENTS Core Network Sql Concurrent REQUIRED) find_package(Qt${QT_VERSION_MAJOR} COMPONENTS Core Network Sql Concurrent REQUIRED) -add_subdirectory(QuasarAppLib) +add_subdirectory(submodules/QuasarAppLib) add_subdirectory(submodules/crc) add_subdirectory(src) @@ -73,4 +56,6 @@ endif() initAll() +configure_file_in(${PROJECT_NAME} ${CMAKE_CURRENT_SOURCE_DIR}/doxygen.conf) addDoc(${PROJECT_NAME} ${CMAKE_CURRENT_SOURCE_DIR}/doxygen.conf) + diff --git a/QuasarAppLib b/QuasarAppLib deleted file mode 160000 index c492fa2..0000000 --- a/QuasarAppLib +++ /dev/null @@ -1 +0,0 @@ -Subproject commit c492fa2fe8b83f93806cc31498af66ee053630ae diff --git a/doxygen.conf b/doxygen.conf index 19e832d..e3140f2 100644 --- a/doxygen.conf +++ b/doxygen.conf @@ -37,20 +37,21 @@ PROJECT_NAME = Heart # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = +PROJECT_NUMBER = @HEART_VERSION@ # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a # quick idea about the purpose of the project. Keep the description short. -PROJECT_BRIEF = +PROJECT_BRIEF = Heart is base back end library for your c++ Qt projects. + # With the PROJECT_LOGO tag one can specify a logo or an icon that is included # in the documentation. The maximum height of the logo should not exceed 55 # pixels and the maximum width should not exceed 200 pixels. Doxygen will copy # the logo to the output directory. -PROJECT_LOGO = +PROJECT_LOGO = res/Logo_Web_alpha.png # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path # into which the generated documentation will be written. If a relative path is @@ -161,7 +162,7 @@ FULL_PATH_NAMES = YES # will be relative from the directory where doxygen is started. # This tag requires that the tag FULL_PATH_NAMES is set to YES. -STRIP_FROM_PATH = +STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the # path mentioned in the documentation of a class, which tells the reader which @@ -170,7 +171,7 @@ STRIP_FROM_PATH = # specify the list of include paths that are normally passed to the compiler # using the -I flag. -STRIP_FROM_INC_PATH = +STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but # less readable) file names. This can be useful is your file systems doesn't @@ -237,13 +238,13 @@ TAB_SIZE = 4 # "Side Effects:". You can put \n's in the value part of an alias to insert # newlines. -ALIASES = +ALIASES = # This tag can be used to specify a number of word-keyword mappings (TCL only). # A mapping has the form "name=value". For example adding "class=itcl::class" # will allow you to use the command class in the itcl::class meaning. -TCL_SUBST = +TCL_SUBST = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources # only. Doxygen will then generate output that is more tailored for C. For @@ -290,7 +291,7 @@ OPTIMIZE_OUTPUT_VHDL = NO # Note that for custom extensions you also need to set FILE_PATTERNS otherwise # the files are not read by doxygen. -EXTENSION_MAPPING = +EXTENSION_MAPPING = # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments # according to the Markdown format, which allows for more readable @@ -647,7 +648,7 @@ GENERATE_DEPRECATEDLIST= YES # sections, marked by \if <section_label> ... \endif and \cond <section_label> # ... \endcond blocks. -ENABLED_SECTIONS = +ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the # initial value of a variable or macro / define can have for it to appear in the @@ -689,7 +690,7 @@ SHOW_NAMESPACES = YES # by doxygen. Whatever the program writes to standard output is used as the file # version. For an example see the documentation. -FILE_VERSION_FILTER = +FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed # by doxygen. The layout file controls the global structure of the generated @@ -702,7 +703,7 @@ FILE_VERSION_FILTER = # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE # tag is left empty. -LAYOUT_FILE = Heart/Qt-Secret/res/DoxyStyle/DoxygenLayout.xml +LAYOUT_FILE = submodules/CMake/DoxyStyle/DoxygenLayout.xml # The CITE_BIB_FILES tag can be used to specify one or more bib files containing # the reference definitions. This must be a list of .bib files. The .bib @@ -712,7 +713,7 @@ LAYOUT_FILE = Heart/Qt-Secret/res/DoxyStyle/DoxygenLayout.xml # LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the # search path. See also \cite for info how to create references. -CITE_BIB_FILES = +CITE_BIB_FILES = #--------------------------------------------------------------------------- # Configuration options related to warning and progress messages @@ -777,7 +778,7 @@ WARN_FORMAT = "$file:$line: $text" # messages should be written. If left blank the output is written to standard # error (stderr). -WARN_LOGFILE = +WARN_LOGFILE = #--------------------------------------------------------------------------- # Configuration options related to the input files @@ -789,9 +790,9 @@ WARN_LOGFILE = # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. -INPUT = Heart \ +INPUT = src \ README.md - + # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -874,9 +875,7 @@ RECURSIVE = YES # Note that relative paths are relative to the directory from which doxygen is # run. -EXCLUDE = ./Heart/Qt-Secret \ - ./Heart/NetworkSpace \ - ./Heart/CMakeFiles +EXCLUDE = ./submodules # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded @@ -892,7 +891,7 @@ EXCLUDE_SYMLINKS = NO # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories for example use the pattern */test/* -EXCLUDE_PATTERNS = +EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the @@ -903,13 +902,13 @@ EXCLUDE_PATTERNS = # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories use the pattern */test/* -EXCLUDE_SYMBOLS = +EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or directories # that contain example code fragments that are included (see the \include # command). -EXAMPLE_PATH = +EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and @@ -950,7 +949,7 @@ IMAGE_PATH = ./Heart/AbstractSpace/Diagrams # need to set EXTENSION_MAPPING for the extension otherwise the files are not # properly processed by doxygen. -INPUT_FILTER = +INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the @@ -963,7 +962,7 @@ INPUT_FILTER = # need to set EXTENSION_MAPPING for the extension otherwise the files are not # properly processed by doxygen. -FILTER_PATTERNS = +FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will also be used to filter the input files that are used for @@ -978,7 +977,7 @@ FILTER_SOURCE_FILES = NO # *.ext= (so without naming a filter). # This tag requires that the tag FILTER_SOURCE_FILES is set to YES. -FILTER_SOURCE_PATTERNS = +FILTER_SOURCE_PATTERNS = # If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that # is part of the input, its contents will be placed on the main page @@ -1090,7 +1089,7 @@ CLANG_ASSISTED_PARSING = NO # specified with INPUT and INCLUDE_PATH. # This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. -CLANG_OPTIONS = +CLANG_OPTIONS = #--------------------------------------------------------------------------- # Configuration options related to the alphabetical class index @@ -1116,7 +1115,7 @@ COLS_IN_ALPHA_INDEX = 5 # while generating the index headers. # This tag requires that the tag ALPHABETICAL_INDEX is set to YES. -IGNORE_PREFIX = +IGNORE_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the HTML output @@ -1160,7 +1159,7 @@ HTML_FILE_EXTENSION = .html # of the possible markers and block names see the documentation. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_HEADER = +HTML_HEADER = # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each # generated HTML page. If the tag is left blank doxygen will generate a standard @@ -1170,7 +1169,7 @@ HTML_HEADER = # that doxygen normally uses. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_FOOTER = +HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading style # sheet that is used by each HTML page. It can be used to fine-tune the look of @@ -1182,7 +1181,7 @@ HTML_FOOTER = # obsolete. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_STYLESHEET = +HTML_STYLESHEET = # The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined # cascading style sheets that are included after the standard style sheets @@ -1195,7 +1194,7 @@ HTML_STYLESHEET = # list). For an example see the documentation. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_EXTRA_STYLESHEET = Heart/Qt-Secret/res/DoxyStyle/doxygenStyles.css +HTML_EXTRA_STYLESHEET = submodules/CMake/DoxyStyle/doxygenStyles.css # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the HTML output directory. Note @@ -1205,7 +1204,7 @@ HTML_EXTRA_STYLESHEET = Heart/Qt-Secret/res/DoxyStyle/doxygenStyles.css # files will be copied as-is; there are no commands or markers available. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_EXTRA_FILES = +HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen # will adjust the colors in the style sheet and background images according to @@ -1216,7 +1215,7 @@ HTML_EXTRA_FILES = # Minimum value: 0, maximum value: 359, default value: 220. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_COLORSTYLE_HUE = 220 +HTML_COLORSTYLE_HUE = 202 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors # in the HTML output. For a value of 0 the output will use grayscales only. A @@ -1224,7 +1223,7 @@ HTML_COLORSTYLE_HUE = 220 # Minimum value: 0, maximum value: 255, default value: 100. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_COLORSTYLE_SAT = 100 +HTML_COLORSTYLE_SAT = 212 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the # luminance component of the colors in the HTML output. Values below 100 @@ -1235,7 +1234,7 @@ HTML_COLORSTYLE_SAT = 100 # Minimum value: 40, maximum value: 240, default value: 80. # This tag requires that the tag GENERATE_HTML is set to YES. -HTML_COLORSTYLE_GAMMA = 80 +HTML_COLORSTYLE_GAMMA = 59 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting this @@ -1334,7 +1333,7 @@ GENERATE_HTMLHELP = NO # written to the html output directory. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. -CHM_FILE = +CHM_FILE = # The HHC_LOCATION tag can be used to specify the location (absolute path # including file name) of the HTML help compiler (hhc.exe). If non-empty, @@ -1342,7 +1341,7 @@ CHM_FILE = # The file has to be specified with full path. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. -HHC_LOCATION = +HHC_LOCATION = # The GENERATE_CHI flag controls if a separate .chi index file is generated # (YES) or that it should be included in the master .chm file (NO). @@ -1355,7 +1354,7 @@ GENERATE_CHI = NO # and project file content. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. -CHM_INDEX_ENCODING = +CHM_INDEX_ENCODING = # The BINARY_TOC flag controls whether a binary table of contents is generated # (YES) or a normal table of contents (NO) in the .chm file. Furthermore it @@ -1386,7 +1385,7 @@ GENERATE_QHP = NO # the HTML output folder. # This tag requires that the tag GENERATE_QHP is set to YES. -QCH_FILE = +QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help # Project output. For more information please see Qt Help Project / Namespace @@ -1394,7 +1393,7 @@ QCH_FILE = # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_QHP is set to YES. -QHP_NAMESPACE = QuasarAppj +QHP_NAMESPACE = QuasarApp # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt # Help Project output. For more information please see Qt Help Project / Virtual @@ -1411,7 +1410,7 @@ QHP_VIRTUAL_FOLDER = doc # filters). # This tag requires that the tag GENERATE_QHP is set to YES. -QHP_CUST_FILTER_NAME = +QHP_CUST_FILTER_NAME = # The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see Qt Help Project / Custom @@ -1419,21 +1418,21 @@ QHP_CUST_FILTER_NAME = # filters). # This tag requires that the tag GENERATE_QHP is set to YES. -QHP_CUST_FILTER_ATTRS = +QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's filter section matches. Qt Help Project / Filter Attributes (see: # http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). # This tag requires that the tag GENERATE_QHP is set to YES. -QHP_SECT_FILTER_ATTRS = +QHP_SECT_FILTER_ATTRS = # The QHG_LOCATION tag can be used to specify the location of Qt's # qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the # generated .qhp file. # This tag requires that the tag GENERATE_QHP is set to YES. -QHG_LOCATION = +QHG_LOCATION = # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be # generated, together with the HTML files, they form an Eclipse help plugin. To @@ -1566,7 +1565,7 @@ MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest # MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols # This tag requires that the tag USE_MATHJAX is set to YES. -MATHJAX_EXTENSIONS = +MATHJAX_EXTENSIONS = # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces # of code that will be used on startup of the MathJax code. See the MathJax site @@ -1574,7 +1573,7 @@ MATHJAX_EXTENSIONS = # example see the documentation. # This tag requires that the tag USE_MATHJAX is set to YES. -MATHJAX_CODEFILE = +MATHJAX_CODEFILE = # When the SEARCHENGINE tag is enabled doxygen will generate a search box for # the HTML output. The underlying search engine uses javascript and DHTML and @@ -1607,7 +1606,7 @@ SEARCHENGINE = YES # The default value is: NO. # This tag requires that the tag SEARCHENGINE is set to YES. -SERVER_BASED_SEARCH = NO +SERVER_BASED_SEARCH = YES # When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP # script for searching. Instead the search results are written to an XML file @@ -1634,7 +1633,7 @@ EXTERNAL_SEARCH = NO # Searching" for details. # This tag requires that the tag SEARCHENGINE is set to YES. -SEARCHENGINE_URL = +SEARCHENGINE_URL = # When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed # search data is written to a file for indexing by an external tool. With the @@ -1650,7 +1649,7 @@ SEARCHDATA_FILE = searchdata.xml # projects and redirect the results back to the right project. # This tag requires that the tag SEARCHENGINE is set to YES. -EXTERNAL_SEARCH_ID = +EXTERNAL_SEARCH_ID = # The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen # projects other than the one defined by this configuration file, but that are @@ -1660,7 +1659,7 @@ EXTERNAL_SEARCH_ID = # EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ... # This tag requires that the tag SEARCHENGINE is set to YES. -EXTRA_SEARCH_MAPPINGS = +EXTRA_SEARCH_MAPPINGS = #--------------------------------------------------------------------------- # Configuration options related to the LaTeX output @@ -1724,7 +1723,7 @@ PAPER_TYPE = a4 # If left blank no extra packages will be included. # This tag requires that the tag GENERATE_LATEX is set to YES. -EXTRA_PACKAGES = +EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for the # generated LaTeX document. The header should contain everything until the first @@ -1740,7 +1739,7 @@ EXTRA_PACKAGES = # to HTML_HEADER. # This tag requires that the tag GENERATE_LATEX is set to YES. -LATEX_HEADER = +LATEX_HEADER = # The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the # generated LaTeX document. The footer should contain everything after the last @@ -1751,7 +1750,7 @@ LATEX_HEADER = # Note: Only use a user-defined footer if you know what you are doing! # This tag requires that the tag GENERATE_LATEX is set to YES. -LATEX_FOOTER = +LATEX_FOOTER = # The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined # LaTeX style sheets that are included after the standard style sheets created @@ -1762,7 +1761,7 @@ LATEX_FOOTER = # list). # This tag requires that the tag GENERATE_LATEX is set to YES. -LATEX_EXTRA_STYLESHEET = +LATEX_EXTRA_STYLESHEET = # The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the LATEX_OUTPUT output @@ -1770,7 +1769,7 @@ LATEX_EXTRA_STYLESHEET = # markers available. # This tag requires that the tag GENERATE_LATEX is set to YES. -LATEX_EXTRA_FILES = +LATEX_EXTRA_FILES = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is # prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will @@ -1878,14 +1877,14 @@ RTF_HYPERLINKS = NO # default style sheet that doxygen normally uses. # This tag requires that the tag GENERATE_RTF is set to YES. -RTF_STYLESHEET_FILE = +RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an RTF document. Syntax is # similar to doxygen's config file. A template extensions file can be generated # using doxygen -e rtf extensionFile. # This tag requires that the tag GENERATE_RTF is set to YES. -RTF_EXTENSIONS_FILE = +RTF_EXTENSIONS_FILE = # If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code # with syntax highlighting in the RTF output. @@ -1930,7 +1929,7 @@ MAN_EXTENSION = .3 # MAN_EXTENSION with the initial . removed. # This tag requires that the tag GENERATE_MAN is set to YES. -MAN_SUBDIR = +MAN_SUBDIR = # If the MAN_LINKS tag is set to YES and doxygen generates man output, then it # will generate one additional man file for each entity documented in the real @@ -2043,7 +2042,7 @@ PERLMOD_PRETTY = YES # overwrite each other's variables. # This tag requires that the tag GENERATE_PERLMOD is set to YES. -PERLMOD_MAKEVAR_PREFIX = +PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor @@ -2084,7 +2083,7 @@ SEARCH_INCLUDES = YES # preprocessor. # This tag requires that the tag SEARCH_INCLUDES is set to YES. -INCLUDE_PATH = +INCLUDE_PATH = # 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 @@ -2092,7 +2091,7 @@ INCLUDE_PATH = # used. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. -INCLUDE_FILE_PATTERNS = +INCLUDE_FILE_PATTERNS = # 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 e.g. @@ -2111,7 +2110,7 @@ PREDEFINED = HEART_SSL # definition found in the source code. # This tag requires that the tag ENABLE_PREPROCESSING is set to YES. -EXPAND_AS_DEFINED = +EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will # remove all references to function-like macros that are alone on a line, have @@ -2140,13 +2139,13 @@ SKIP_FUNCTION_MACROS = YES # the path). If a tag file is not located in the directory in which doxygen is # run, you must also specify the path to the tagfile here. -TAGFILES = +TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create a # tag file that is based on the input files it reads. See section "Linking to # external documentation" for more information about the usage of tag files. -GENERATE_TAGFILE = +GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES, all external class will be listed in # the class index. If set to NO, only the inherited external classes will be @@ -2195,14 +2194,14 @@ CLASS_DIAGRAMS = YES # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. -MSCGEN_PATH = +MSCGEN_PATH = # You can include diagrams made with dia in doxygen documentation. Doxygen will # then run dia to produce the diagram and insert it in the documentation. The # DIA_PATH tag allows you to specify the directory where the dia binary resides. # If left empty dia is assumed to be found in the default search path. -DIA_PATH = +DIA_PATH = # If set to YES the inheritance and collaboration graphs will hide inheritance # and usage relations if the target is undocumented or is not a class. @@ -2251,7 +2250,7 @@ DOT_FONTSIZE = 10 # the path where dot can find it using this tag. # This tag requires that the tag HAVE_DOT is set to YES. -DOT_FONTPATH = +DOT_FONTPATH = # If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for # each documented class showing the direct and indirect inheritance relations. @@ -2397,26 +2396,26 @@ INTERACTIVE_SVG = YES # found. If left blank, it is assumed the dot tool can be found in the path. # This tag requires that the tag HAVE_DOT is set to YES. -DOT_PATH = +DOT_PATH = # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the \dotfile # command). # This tag requires that the tag HAVE_DOT is set to YES. -DOTFILE_DIRS = +DOTFILE_DIRS = # The MSCFILE_DIRS tag can be used to specify one or more directories that # contain msc files that are included in the documentation (see the \mscfile # command). -MSCFILE_DIRS = +MSCFILE_DIRS = # The DIAFILE_DIRS tag can be used to specify one or more directories that # contain dia files that are included in the documentation (see the \diafile # command). -DIAFILE_DIRS = +DIAFILE_DIRS = # When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the # path where java can find the plantuml.jar file. If left blank, it is assumed @@ -2424,17 +2423,17 @@ DIAFILE_DIRS = # generate a warning when it encounters a \startuml command in this case and # will not generate output for the diagram. -PLANTUML_JAR_PATH = +PLANTUML_JAR_PATH = # When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a # configuration file for plantuml. -PLANTUML_CFG_FILE = +PLANTUML_CFG_FILE = # When using plantuml, the specified paths are searched for files specified by # the !include statement in a plantuml block. -PLANTUML_INCLUDE_PATH = +PLANTUML_INCLUDE_PATH = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes # that will be shown in the graph. If the number of nodes in a graph becomes diff --git a/doxygen.conf.in b/doxygen.conf.in new file mode 100644 index 0000000..7180cde --- /dev/null +++ b/doxygen.conf.in @@ -0,0 +1,2497 @@ +# Doxyfile 1.8.13 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv +# for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = Heart +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = docs + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = YES + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 0. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 0 + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# If one adds a struct or class to a group and this option is enabled, then also +# any nested class or struct is added to the same group. By default this option +# is disabled and one has to add nested compounds explicitly via \ingroup. +# The default value is: NO. + +GROUP_NESTED_COMPOUNDS = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO, these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES, upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = YES + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if <section_label> ... \endif and \cond <section_label> +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = Heart/Qt-Secret/res/DoxyStyle/DoxygenLayout.xml + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong or incomplete +# parameter documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when +# a warning is encountered. +# The default value is: NO. + +WARN_AS_ERROR = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING +# Note: If this tag is empty the current directory is searched. + +INPUT = src \ + README.md + + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by doxygen. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, +# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, +# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, +# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, +# *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf and *.qsf. + +FILE_PATTERNS = *.c \ + *.cc \ + *.cxx \ + *.cpp \ + *.c++ \ + *.java \ + *.ii \ + *.ixx \ + *.ipp \ + *.i++ \ + *.inl \ + *.idl \ + *.ddl \ + *.odl \ + *.h \ + *.hh \ + *.hxx \ + *.hpp \ + *.h++ \ + *.cs \ + *.d \ + *.php \ + *.php4 \ + *.php5 \ + *.phtml \ + *.inc \ + *.m \ + *.markdown \ + *.md \ + *.mm \ + *.dox \ + *.py \ + *.pyw \ + *.f90 \ + *.f95 \ + *.f03 \ + *.f08 \ + *.f \ + *.for \ + *.tcl \ + *.vhd \ + *.vhdl \ + *.ucf \ + *.qsf + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = ./Heart/Qt-Secret \ + ./Heart/NetworkSpace \ + ./Heart/CMakeFiles + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = ./Heart/AbstractSpace/Diagrams + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# <filter> <input-file> +# +# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = README.md + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = YES + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see http://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the +# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the +# cost of reduced performance. This can be particularly helpful with template +# rich C++ code for which doxygen's built-in parser lacks the necessary type +# information. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse-libclang=ON option for CMake. +# The default value is: NO. + +CLANG_ASSISTED_PARSING = NO + +# If clang assisted parsing is enabled you can provide the compiler with command +# line options that you would normally use when invoking the compiler. Note that +# the include paths will already be set by doxygen for the files and directories +# specified with INPUT and INCLUDE_PATH. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_OPTIONS = + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = . + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = Heart/Qt-Secret/res/DoxyStyle/doxygenStyles.css + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to YES can help to show when doxygen was last run and thus if the +# documentation is up to date. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = NO + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: http://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the master .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = QuasarAppj + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = QuasarApp.Heart + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = YES + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use <access key> + S +# (what the <access key> is depends on the OS and browser, but it is typically +# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down +# key> to jump into the search results window, the results can be navigated +# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel +# the search. The filter options can be selected when the cursor is inside the +# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys> +# to select a filter and <Enter> or <escape> to activate or cancel the filter +# option. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +SEARCHENGINE = YES + +# When the SERVER_BASED_SEARCH tag is enabled the search engine will be +# implemented using a web server instead of a web client using Javascript. There +# are two flavors of web server based searching depending on the EXTERNAL_SEARCH +# setting. When disabled, doxygen will generate a PHP script for searching and +# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing +# and searching needs to be provided by external tools. See the section +# "External Indexing and Searching" for details. +# The default value is: NO. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SERVER_BASED_SEARCH = NO + +# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP +# script for searching. Instead the search results are written to an XML file +# which needs to be processed by an external indexer. Doxygen will invoke an +# external search engine pointed to by the SEARCHENGINE_URL option to obtain the +# search results. +# +# Doxygen ships with an example indexer (doxyindexer) and search engine +# (doxysearch.cgi) which are based on the open source search engine library +# Xapian (see: http://xapian.org/). +# +# See the section "External Indexing and Searching" for details. +# The default value is: NO. +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTERNAL_SEARCH = NO + +# The SEARCHENGINE_URL should point to a search engine hosted by a web server +# which will return the search results when EXTERNAL_SEARCH is enabled. +# +# Doxygen ships with an example indexer (doxyindexer) and search engine +# (doxysearch.cgi) which are based on the open source search engine library +# Xapian (see: http://xapian.org/). See the section "External Indexing and +# Searching" for details. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SEARCHENGINE_URL = + +# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed +# search data is written to a file for indexing by an external tool. With the +# SEARCHDATA_FILE tag the name of this file can be specified. +# The default file is: searchdata.xml. +# This tag requires that the tag SEARCHENGINE is set to YES. + +SEARCHDATA_FILE = searchdata.xml + +# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the +# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is +# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple +# projects and redirect the results back to the right project. +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTERNAL_SEARCH_ID = + +# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen +# projects other than the one defined by this configuration file, but that are +# all added to the same external search index. Each project needs to have a +# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of +# to a relative location where the documentation can be found. The format is: +# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ... +# This tag requires that the tag SEARCHENGINE is set to YES. + +EXTRA_SEARCH_MAPPINGS = + +#--------------------------------------------------------------------------- +# Configuration options related to the LaTeX output +#--------------------------------------------------------------------------- + +# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output. +# The default value is: YES. + +GENERATE_LATEX = NO + +# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: latex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_OUTPUT = latex + +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# invoked. +# +# Note that when enabling USE_PDFLATEX this option is only used for generating +# bitmaps for formulas in the HTML output, but not in the Makefile that is +# written to the output directory. +# The default file is: latex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_CMD_NAME = latex + +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate +# index for LaTeX. +# The default file is: makeindex. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +MAKEINDEX_CMD_NAME = makeindex + +# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX +# documents. This may be useful for small projects and may help to save some +# trees in general. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +COMPACT_LATEX = NO + +# The PAPER_TYPE tag can be used to set the paper type that is used by the +# printer. +# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x +# 14 inches) and executive (7.25 x 10.5 inches). +# The default value is: a4. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +PAPER_TYPE = a4 + +# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names +# that should be included in the LaTeX output. The package can be specified just +# by its name or with the correct syntax as to be used with the LaTeX +# \usepackage command. To get the times font for instance you can specify : +# EXTRA_PACKAGES=times or EXTRA_PACKAGES={times} +# To use the option intlimits with the amsmath package you can specify: +# EXTRA_PACKAGES=[intlimits]{amsmath} +# If left blank no extra packages will be included. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +EXTRA_PACKAGES = + +# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the +# generated LaTeX document. The header should contain everything until the first +# chapter. If it is left blank doxygen will generate a standard header. See +# section "Doxygen usage" for information on how to let doxygen write the +# default header to a separate file. +# +# Note: Only use a user-defined header if you know what you are doing! The +# following commands have a special meaning inside the header: $title, +# $datetime, $date, $doxygenversion, $projectname, $projectnumber, +# $projectbrief, $projectlogo. Doxygen will replace $title with the empty +# string, for the replacement values of the other commands the user is referred +# to HTML_HEADER. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_HEADER = + +# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the +# generated LaTeX document. The footer should contain everything after the last +# chapter. If it is left blank doxygen will generate a standard footer. See +# LATEX_HEADER for more information on how to generate a default footer and what +# special commands can be used inside the footer. +# +# Note: Only use a user-defined footer if you know what you are doing! +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_FOOTER = + +# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# LaTeX style sheets that are included after the standard style sheets created +# by doxygen. Using this option one can overrule certain style aspects. Doxygen +# will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_EXTRA_STYLESHEET = + +# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the LATEX_OUTPUT output +# directory. Note that the files will be copied as-is; there are no commands or +# markers available. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_EXTRA_FILES = + +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is +# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will +# contain links (just like the HTML output) instead of page references. This +# makes the output suitable for online browsing using a PDF viewer. +# The default value is: YES. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +PDF_HYPERLINKS = YES + +# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate +# the PDF file directly from the LaTeX files. Set this option to YES, to get a +# higher quality PDF documentation. +# The default value is: YES. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +USE_PDFLATEX = YES + +# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode +# command to the generated LaTeX files. This will instruct LaTeX to keep running +# if errors occur, instead of asking the user for help. This option is also used +# when generating formulas in HTML. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_BATCHMODE = NO + +# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the +# index chapters (such as File Index, Compound Index, etc.) in the output. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_HIDE_INDICES = NO + +# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source +# code with syntax highlighting in the LaTeX output. +# +# Note that which sources are shown also depends on other settings such as +# SOURCE_BROWSER. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_SOURCE_CODE = NO + +# The LATEX_BIB_STYLE tag can be used to specify the style to use for the +# bibliography, e.g. plainnat, or ieeetr. See +# http://en.wikipedia.org/wiki/BibTeX and \cite for more info. +# The default value is: plain. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_BIB_STYLE = plain + +# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated +# page will contain the date and time when the page was generated. Setting this +# to NO can help when comparing the output of multiple runs. +# The default value is: NO. +# This tag requires that the tag GENERATE_LATEX is set to YES. + +LATEX_TIMESTAMP = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the RTF output +#--------------------------------------------------------------------------- + +# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The +# RTF output is optimized for Word 97 and may not look too pretty with other RTF +# readers/editors. +# The default value is: NO. + +GENERATE_RTF = NO + +# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: rtf. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_OUTPUT = rtf + +# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF +# documents. This may be useful for small projects and may help to save some +# trees in general. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +COMPACT_RTF = NO + +# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will +# contain hyperlink fields. The RTF file will contain links (just like the HTML +# output) instead of page references. This makes the output suitable for online +# browsing using Word or some other Word compatible readers that support those +# fields. +# +# Note: WordPad (write) and others do not support links. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_HYPERLINKS = NO + +# Load stylesheet definitions from file. Syntax is similar to doxygen's config +# file, i.e. a series of assignments. You only have to provide replacements, +# missing definitions are set to their default value. +# +# See also section "Doxygen usage" for information on how to generate the +# default style sheet that doxygen normally uses. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_STYLESHEET_FILE = + +# Set optional variables used in the generation of an RTF document. Syntax is +# similar to doxygen's config file. A template extensions file can be generated +# using doxygen -e rtf extensionFile. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_EXTENSIONS_FILE = + +# If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code +# with syntax highlighting in the RTF output. +# +# Note that which sources are shown also depends on other settings such as +# SOURCE_BROWSER. +# The default value is: NO. +# This tag requires that the tag GENERATE_RTF is set to YES. + +RTF_SOURCE_CODE = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the man page output +#--------------------------------------------------------------------------- + +# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for +# classes and files. +# The default value is: NO. + +GENERATE_MAN = NO + +# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. A directory man3 will be created inside the directory specified by +# MAN_OUTPUT. +# The default directory is: man. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_OUTPUT = man + +# The MAN_EXTENSION tag determines the extension that is added to the generated +# man pages. In case the manual section does not start with a number, the number +# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is +# optional. +# The default value is: .3. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_EXTENSION = .3 + +# The MAN_SUBDIR tag determines the name of the directory created within +# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by +# MAN_EXTENSION with the initial . removed. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_SUBDIR = + +# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it +# will generate one additional man file for each entity documented in the real +# man page(s). These additional files only source the real man page, but without +# them the man command would be unable to find the correct page. +# The default value is: NO. +# This tag requires that the tag GENERATE_MAN is set to YES. + +MAN_LINKS = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the XML output +#--------------------------------------------------------------------------- + +# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that +# captures the structure of the code including all documentation. +# The default value is: NO. + +GENERATE_XML = NO + +# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: xml. +# This tag requires that the tag GENERATE_XML is set to YES. + +XML_OUTPUT = xml + +# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program +# listings (including syntax highlighting and cross-referencing information) to +# the XML output. Note that enabling this will significantly increase the size +# of the XML output. +# The default value is: YES. +# This tag requires that the tag GENERATE_XML is set to YES. + +XML_PROGRAMLISTING = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the DOCBOOK output +#--------------------------------------------------------------------------- + +# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files +# that can be used to generate PDF. +# The default value is: NO. + +GENERATE_DOCBOOK = NO + +# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put. +# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in +# front of it. +# The default directory is: docbook. +# This tag requires that the tag GENERATE_DOCBOOK is set to YES. + +DOCBOOK_OUTPUT = docbook + +# If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the +# program listings (including syntax highlighting and cross-referencing +# information) to the DOCBOOK output. Note that enabling this will significantly +# increase the size of the DOCBOOK output. +# The default value is: NO. +# This tag requires that the tag GENERATE_DOCBOOK is set to YES. + +DOCBOOK_PROGRAMLISTING = NO + +#--------------------------------------------------------------------------- +# Configuration options for the AutoGen Definitions output +#--------------------------------------------------------------------------- + +# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an +# AutoGen Definitions (see http://autogen.sf.net) file that captures the +# structure of the code including all documentation. Note that this feature is +# still experimental and incomplete at the moment. +# The default value is: NO. + +GENERATE_AUTOGEN_DEF = NO + +#--------------------------------------------------------------------------- +# Configuration options related to the Perl module output +#--------------------------------------------------------------------------- + +# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module +# file that captures the structure of the code including all documentation. +# +# Note that this feature is still experimental and incomplete at the moment. +# The default value is: NO. + +GENERATE_PERLMOD = NO + +# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary +# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI +# output from the Perl module output. +# The default value is: NO. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_LATEX = NO + +# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely +# formatted so it can be parsed by a human reader. This is useful if you want to +# understand what is going on. On the other hand, if this tag is set to NO, the +# size of the Perl module output will be much smaller and Perl will parse it +# just the same. +# The default value is: YES. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_PRETTY = YES + +# The names of the make variables in the generated doxyrules.make file are +# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful +# so different doxyrules.make files included by the same Makefile don't +# overwrite each other's variables. +# This tag requires that the tag GENERATE_PERLMOD is set to YES. + +PERLMOD_MAKEVAR_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the preprocessor +#--------------------------------------------------------------------------- + +# If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all +# C-preprocessor directives found in the sources and include files. +# The default value is: YES. + +ENABLE_PREPROCESSING = YES + +# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names +# in the source code. If set to NO, only conditional compilation will be +# performed. Macro expansion can be done in a controlled way by setting +# EXPAND_ONLY_PREDEF to YES. +# The default value is: NO. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +MACRO_EXPANSION = NO + +# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then +# the macro expansion is limited to the macros specified with the PREDEFINED and +# EXPAND_AS_DEFINED tags. +# The default value is: NO. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +EXPAND_ONLY_PREDEF = NO + +# If the SEARCH_INCLUDES tag is set to YES, the include files in the +# INCLUDE_PATH will be searched if a #include is found. +# The default value is: YES. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +SEARCH_INCLUDES = YES + +# The INCLUDE_PATH tag can be used to specify one or more directories that +# contain include files that are not input files but should be processed by the +# preprocessor. +# This tag requires that the tag SEARCH_INCLUDES is set to YES. + +INCLUDE_PATH = + +# 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. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +INCLUDE_FILE_PATTERNS = + +# 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 e.g. +# gcc). The argument of the tag is a list of macros of the form: name or +# name=definition (no spaces). If the definition and the "=" are omitted, "=1" +# is assumed. To prevent a macro definition from being undefined via #undef or +# recursively expanded use the := operator instead of the = operator. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +PREDEFINED = HEART_SSL + +# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this +# tag can be used to specify a list of macro names that should be expanded. The +# macro definition that is found in the sources will be used. Use the PREDEFINED +# tag if you want to use a different macro definition that overrules the +# definition found in the source code. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +EXPAND_AS_DEFINED = + +# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will +# remove all references to function-like macros that are alone on a line, have +# an all uppercase name, and do not end with a semicolon. Such function macros +# are typically used for boiler-plate code, and will confuse the parser if not +# removed. +# The default value is: YES. +# This tag requires that the tag ENABLE_PREPROCESSING is set to YES. + +SKIP_FUNCTION_MACROS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to external references +#--------------------------------------------------------------------------- + +# The TAGFILES tag can be used to specify one or more tag files. For each tag +# file the location of the external documentation should be added. The format of +# a tag file without this location is as follows: +# TAGFILES = file1 file2 ... +# Adding location for the tag files is done as follows: +# TAGFILES = file1=loc1 "file2 = loc2" ... +# where loc1 and loc2 can be relative or absolute paths or URLs. See the +# section "Linking to external documentation" for more information about the use +# of tag files. +# Note: Each tag file must have a unique name (where the name does NOT include +# the path). If a tag file is not located in the directory in which doxygen is +# run, you must also specify the path to the tagfile here. + +TAGFILES = + +# When a file name is specified after GENERATE_TAGFILE, doxygen will create a +# tag file that is based on the input files it reads. See section "Linking to +# external documentation" for more information about the usage of tag files. + +GENERATE_TAGFILE = + +# If the ALLEXTERNALS tag is set to YES, all external class will be listed in +# the class index. If set to NO, only the inherited external classes will be +# listed. +# The default value is: NO. + +ALLEXTERNALS = NO + +# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed +# in the modules index. If set to NO, only the current project's groups will be +# listed. +# The default value is: YES. + +EXTERNAL_GROUPS = YES + +# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in +# the related pages index. If set to NO, only the current project's pages will +# be listed. +# The default value is: YES. + +EXTERNAL_PAGES = YES + +# The PERL_PATH should be the absolute path and name of the perl script +# interpreter (i.e. the result of 'which perl'). +# The default file (with absolute path) is: /usr/bin/perl. + +PERL_PATH = /usr/bin/perl + +#--------------------------------------------------------------------------- +# Configuration options related to the dot tool +#--------------------------------------------------------------------------- + +# If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram +# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to +# NO turns the diagrams off. Note that this option also works with HAVE_DOT +# disabled, but it is recommended to install and use dot, since it yields more +# powerful graphs. +# The default value is: YES. + +CLASS_DIAGRAMS = YES + +# You can define message sequence charts within doxygen comments using the \msc +# command. Doxygen will then run the mscgen tool (see: +# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the +# documentation. The MSCGEN_PATH tag allows you to specify the directory where +# the mscgen tool resides. If left empty the tool is assumed to be found in the +# default search path. + +MSCGEN_PATH = + +# You can include diagrams made with dia in doxygen documentation. Doxygen will +# then run dia to produce the diagram and insert it in the documentation. The +# DIA_PATH tag allows you to specify the directory where the dia binary resides. +# If left empty dia is assumed to be found in the default search path. + +DIA_PATH = + +# If set to YES the inheritance and collaboration graphs will hide inheritance +# and usage relations if the target is undocumented or is not a class. +# The default value is: YES. + +HIDE_UNDOC_RELATIONS = YES + +# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is +# available from the path. This tool is part of Graphviz (see: +# http://www.graphviz.org/), a graph visualization 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 value is: YES. + +HAVE_DOT = YES + +# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed +# to run in parallel. When set to 0 doxygen will base this on the number of +# processors available in the system. You can set it explicitly to a value +# larger than 0 to get control over the balance between CPU load and processing +# speed. +# Minimum value: 0, maximum value: 32, default value: 0. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_NUM_THREADS = 0 + +# When you want a differently looking font in the dot files that doxygen +# generates you can specify the font name using DOT_FONTNAME. You need to make +# sure dot is able to find the font, which can be done by putting it in a +# standard location or by setting the DOTFONTPATH environment variable or by +# setting DOT_FONTPATH to the directory containing the font. +# The default value is: Helvetica. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTNAME = Helvetica + +# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of +# dot graphs. +# Minimum value: 4, maximum value: 24, default value: 10. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTSIZE = 10 + +# By default doxygen will tell dot to use the default font as specified with +# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set +# the path where dot can find it using this tag. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_FONTPATH = + +# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for +# each documented class showing the direct and indirect inheritance relations. +# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +CLASS_GRAPH = YES + +# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a +# graph for each documented class showing the direct and indirect implementation +# dependencies (inheritance, containment, and class references variables) of the +# class with other documented classes. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +COLLABORATION_GRAPH = YES + +# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for +# groups, showing the direct groups dependencies. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GROUP_GRAPHS = YES + +# 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 +# Language. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +UML_LOOK = YES + +# If the UML_LOOK tag is enabled, the fields and methods are shown inside the +# class node. If there are many fields or methods and many nodes the graph may +# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the +# number of items for each type to make the size more manageable. Set this to 0 +# for no limit. Note that the threshold may be exceeded by 50% before the limit +# is enforced. So when you set the threshold to 10, up to 15 fields may appear, +# but if the number exceeds 15, the total amount of fields shown is limited to +# 10. +# Minimum value: 0, maximum value: 100, default value: 10. +# This tag requires that the tag HAVE_DOT is set to YES. + +UML_LIMIT_NUM_FIELDS = 10 + +# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and +# collaboration graphs will show the relations between templates and their +# instances. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +TEMPLATE_RELATIONS = NO + +# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to +# YES then doxygen will generate a graph for each documented file showing the +# direct and indirect include dependencies of the file with other documented +# files. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDE_GRAPH = YES + +# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are +# set to YES then doxygen will generate a graph for each documented file showing +# the direct and indirect include dependencies of the file with other documented +# files. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +INCLUDED_BY_GRAPH = YES + +# If the CALL_GRAPH tag is set to YES then doxygen will generate a call +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable call graphs for selected +# functions only using the \callgraph command. Disabling a call graph can be +# accomplished by means of the command \hidecallgraph. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALL_GRAPH = YES + +# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller +# dependency graph for every global function or class method. +# +# Note that enabling this option will significantly increase the time of a run. +# So in most cases it will be better to enable caller graphs for selected +# functions only using the \callergraph command. Disabling a caller graph can be +# accomplished by means of the command \hidecallergraph. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +CALLER_GRAPH = YES + +# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical +# hierarchy of all classes instead of a textual one. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GRAPHICAL_HIERARCHY = YES + +# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the +# dependencies a directory has on other directories in a graphical way. The +# dependency relations are determined by the #include relations between the +# files in the directories. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +DIRECTORY_GRAPH = YES + +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. For an explanation of the image formats see the section +# output formats in the documentation of the dot tool (Graphviz (see: +# http://www.graphviz.org/)). +# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order +# to make the SVG files visible in IE 9+ (other browsers do not have this +# requirement). +# Possible values are: png, png:cairo, png:cairo:cairo, png:cairo:gd, png:gd, +# png:gd:gd, jpg, jpg:cairo, jpg:cairo:gd, jpg:gd, jpg:gd:gd, gif, gif:cairo, +# gif:cairo:gd, gif:gd, gif:gd:gd, svg, png:gd, png:gd:gd, png:cairo, +# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and +# png:gdiplus:gdiplus. +# The default value is: png. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_IMAGE_FORMAT = png + +# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to +# enable generation of interactive SVG images that allow zooming and panning. +# +# Note that this requires a modern browser other than Internet Explorer. Tested +# and working are Firefox, Chrome, Safari, and Opera. +# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make +# the SVG files visible. Older versions of IE do not have SVG support. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +INTERACTIVE_SVG = YES + +# The DOT_PATH tag can be used to specify the path where the dot tool can be +# found. If left blank, it is assumed the dot tool can be found in the path. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_PATH = + +# The DOTFILE_DIRS tag can be used to specify one or more directories that +# contain dot files that are included in the documentation (see the \dotfile +# command). +# This tag requires that the tag HAVE_DOT is set to YES. + +DOTFILE_DIRS = + +# The MSCFILE_DIRS tag can be used to specify one or more directories that +# contain msc files that are included in the documentation (see the \mscfile +# command). + +MSCFILE_DIRS = + +# The DIAFILE_DIRS tag can be used to specify one or more directories that +# contain dia files that are included in the documentation (see the \diafile +# command). + +DIAFILE_DIRS = + +# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the +# path where java can find the plantuml.jar file. If left blank, it is assumed +# PlantUML is not used or called during a preprocessing step. Doxygen will +# generate a warning when it encounters a \startuml command in this case and +# will not generate output for the diagram. + +PLANTUML_JAR_PATH = + +# When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a +# configuration file for plantuml. + +PLANTUML_CFG_FILE = + +# When using plantuml, the specified paths are searched for files specified by +# the !include statement in a plantuml block. + +PLANTUML_INCLUDE_PATH = + +# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes +# that will be shown in the graph. If the number of nodes in a graph becomes +# larger than this value, doxygen will truncate the graph, which is visualized +# by representing a node as a red box. Note that doxygen if the number of direct +# children of the root node in a graph is already larger than +# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that +# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. +# Minimum value: 0, maximum value: 10000, default value: 50. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_GRAPH_MAX_NODES = 50 + +# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs +# generated by dot. A depth value of 3 means that only nodes reachable from the +# root by following a path via at most 3 edges will be shown. Nodes that lay +# further from the root node will be omitted. Note that setting this option to 1 +# or 2 may greatly reduce the computation time needed for large code bases. Also +# note that the size of a graph can be further restricted by +# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. +# Minimum value: 0, maximum value: 1000, default value: 0. +# This tag requires that the tag HAVE_DOT is set to YES. + +MAX_DOT_GRAPH_DEPTH = 0 + +# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent +# background. This is disabled by default, because dot on Windows does not seem +# to support this out of the box. +# +# Warning: Depending on the platform used, enabling this option may lead to +# badly anti-aliased labels on the edges of a graph (i.e. they become hard to +# read). +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_TRANSPARENT = NO + +# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output +# files in one run (i.e. multiple -o and -T options on the command line). This +# makes dot run faster, but since only newer versions of dot (>1.8.10) support +# this, this feature is disabled by default. +# The default value is: NO. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_MULTI_TARGETS = NO + +# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page +# explaining the meaning of the various boxes and arrows in the dot generated +# graphs. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +GENERATE_LEGEND = YES + +# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot +# files that are used to generate the various graphs. +# The default value is: YES. +# This tag requires that the tag HAVE_DOT is set to YES. + +DOT_CLEANUP = YES diff --git a/res/Logo_Web_alpha.png b/res/Logo_Web_alpha.png new file mode 100644 index 0000000000000000000000000000000000000000..9c83bad7debf8e61cd560a37089bdc10da0fa91f GIT binary patch literal 75778 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%0AvSx%VOH#SbYV=<horGBzt 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 literal 0 HcmV?d00001 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 1fe325c..a595719 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -14,7 +14,6 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_AUTOMOC ON) set(CMAKE_AUTORCC ON) -updateGitVars() add_definitions(-DHEART_LIBRARY) diff --git a/src/heart_global.h.in b/src/heart_global.h.in index dd99078..150dd59 100644 --- a/src/heart_global.h.in +++ b/src/heart_global.h.in @@ -12,8 +12,7 @@ #define @SLL_DEFINE@ -#define HEART_BUILD_LVL @HEART_BUILD_LVL@ -#define HEART_VERSION "1.1.@GIT_COMMIT_COUNT@.@GIT_COMMIT_HASH@" +#define HEART_VERSION @HEART_VERSION@ #if defined(HEART_LIBRARY) # define HEARTSHARED_EXPORT Q_DECL_EXPORT #else diff --git a/src/public/abstractnode.cpp b/src/public/abstractnode.cpp index cd8755d..30a6e69 100644 --- a/src/public/abstractnode.cpp +++ b/src/public/abstractnode.cpp @@ -1264,6 +1264,7 @@ void AbstractNode::nodeConfirmend(AbstractNodeInfo *node) { } void AbstractNode::nodeConnected(AbstractNodeInfo *node) { + auto &actions = _connectActions[NodeCoonectionStatus::Connected]; auto action = actions.take(node->networkAddress()); if (action) diff --git a/submodules/QuasarAppLib b/submodules/QuasarAppLib new file mode 160000 index 0000000..afb0ef5 --- /dev/null +++ b/submodules/QuasarAppLib @@ -0,0 +1 @@ +Subproject commit afb0ef5fd83d5a00900c721b5d8cdcb1fa32b92a