diff options
author | albert-github <albert.tests@gmail.com> | 2016-08-21 12:17:20 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2016-08-21 12:17:20 (GMT) |
commit | ba848363081c44c9aa9e91b193054983f562e90c (patch) | |
tree | 246ba9ad0b053e7f99815c906600d99deb690378 /src/cmdmapper.h | |
parent | b24d9db1ae409195c18e83f1d31c2a135964f141 (diff) | |
download | Doxygen-ba848363081c44c9aa9e91b193054983f562e90c.zip Doxygen-ba848363081c44c9aa9e91b193054983f562e90c.tar.gz Doxygen-ba848363081c44c9aa9e91b193054983f562e90c.tar.bz2 |
Introducing commands includedoc and snippetdoc
Purpose to have the possibility to have repeating texts not repeated in the comments.
The commands include and snippet introduce code blocks whilst the commands includedoc and snippetdoc inclode the text as is and it will be parsed by doxygen.
Diffstat (limited to 'src/cmdmapper.h')
-rw-r--r-- | src/cmdmapper.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cmdmapper.h b/src/cmdmapper.h index 92c906a..8800c38 100644 --- a/src/cmdmapper.h +++ b/src/cmdmapper.h @@ -133,7 +133,9 @@ enum CommandType CMD_SETSCOPE = 103, CMD_PUNT = 104, CMD_PLUS = 105, - CMD_MINUS = 106 + CMD_MINUS = 106, + CMD_INCLUDEDOC = 107, + CMD_SNIPPETDOC = 108 }; enum HtmlTagType |