diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2004-04-13 19:01:22 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2004-04-13 19:01:22 (GMT) |
commit | f08c77a2ead21877f1cbd49a5b325ab7be0fc599 (patch) | |
tree | 17a9c5d727d7c9aee93cdd92b7f832a4a09c1b2a /src/perlmodgen.cpp | |
parent | cba24284923c7319c08926c3ba9cd20f3eee3fdf (diff) | |
download | Doxygen-f08c77a2ead21877f1cbd49a5b325ab7be0fc599.zip Doxygen-f08c77a2ead21877f1cbd49a5b325ab7be0fc599.tar.gz Doxygen-f08c77a2ead21877f1cbd49a5b325ab7be0fc599.tar.bz2 |
Release-1.3.6-20040413
Diffstat (limited to 'src/perlmodgen.cpp')
-rw-r--r-- | src/perlmodgen.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/perlmodgen.cpp b/src/perlmodgen.cpp index 20520c1..c5c9858 100644 --- a/src/perlmodgen.cpp +++ b/src/perlmodgen.cpp @@ -642,6 +642,18 @@ void PerlModDocVisitor::visit(DocInclude *inc) const char *type = 0; switch(inc->type()) { + case DocInclude::IncWithLines: + #if 0 + { + m_t << "<div class=\"fragment\"><pre>"; + QFileInfo cfi( inc->file() ); + FileDef fd( cfi.dirPath(), cfi.fileName() ); + parseCode(m_ci,inc->context(),inc->text().latin1(),inc->isExample(),inc->exampleFile(), &fd); + m_t << "</pre></div>"; + } + break; + #endif + return; case DocInclude::Include: #if 0 m_output.add("<programlisting>"); |