diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-03-27 20:22:11 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-03-27 20:22:11 (GMT) |
commit | 1134237afe25f86fcf7c7e2a76a3542eee8acc79 (patch) | |
tree | 61693e55d7d19def20499b7a62795028b86f82d4 /src/perlmodgen.cpp | |
parent | 904ad3fbdc5e1615fdb052ba8562fc9b1329cd81 (diff) | |
download | Doxygen-1134237afe25f86fcf7c7e2a76a3542eee8acc79.zip Doxygen-1134237afe25f86fcf7c7e2a76a3542eee8acc79.tar.gz Doxygen-1134237afe25f86fcf7c7e2a76a3542eee8acc79.tar.bz2 |
Added \latexinclude command (thanks to Juan Zaratiegui for the patch)
Diffstat (limited to 'src/perlmodgen.cpp')
-rw-r--r-- | src/perlmodgen.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/perlmodgen.cpp b/src/perlmodgen.cpp index 1f8e713..948836b 100644 --- a/src/perlmodgen.cpp +++ b/src/perlmodgen.cpp @@ -704,6 +704,7 @@ void PerlModDocVisitor::visit(DocInclude *inc) return; case DocInclude::DontInclude: return; case DocInclude::HtmlInclude: type = "htmlonly"; break; + case DocInclude::LatexInclude: type = "latexonly"; break; case DocInclude::VerbInclude: type = "preformatted"; break; case DocInclude::Snippet: return; } |