summaryrefslogtreecommitdiffstats
path: root/src/perlmodgen.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-01-09 18:13:16 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-01-09 18:13:16 (GMT)
commitb59182f64dcb75bd9b7ddcb31e28fae459c4cf03 (patch)
tree9066527c128881c810efe511353b98b59dec6622 /src/perlmodgen.cpp
parentabb7f5372f3646d8dc70fb5c47344dc9250d8b2c (diff)
downloadDoxygen-b59182f64dcb75bd9b7ddcb31e28fae459c4cf03.zip
Doxygen-b59182f64dcb75bd9b7ddcb31e28fae459c4cf03.tar.gz
Doxygen-b59182f64dcb75bd9b7ddcb31e28fae459c4cf03.tar.bz2
Adding commands `\rtfinclude`, `\docbookinclude`, `\maninclude` and `\xmlinclude`
Adding for consistency with `\*only`, `\htmlincclude` and `\latexinclude` the commands: `\rtfinclude`, `\docbookinclude`, `\maninclude` and `\xmlinclude`
Diffstat (limited to 'src/perlmodgen.cpp')
-rw-r--r--src/perlmodgen.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/perlmodgen.cpp b/src/perlmodgen.cpp
index 4ecee5e..7bbc4a7 100644
--- a/src/perlmodgen.cpp
+++ b/src/perlmodgen.cpp
@@ -733,6 +733,10 @@ void PerlModDocVisitor::visit(DocInclude *inc)
case DocInclude::DontIncWithLines: return;
case DocInclude::HtmlInclude: type = "htmlonly"; break;
case DocInclude::LatexInclude: type = "latexonly"; break;
+ case DocInclude::RtfInclude: type = "rtfonly"; break;
+ case DocInclude::ManInclude: type = "manonly"; break;
+ case DocInclude::XmlInclude: type = "xmlonly"; break;
+ case DocInclude::DocbookInclude: type = "docbookonly"; break;
case DocInclude::VerbInclude: type = "preformatted"; break;
case DocInclude::Snippet: return;
case DocInclude::SnipWithLines: return;