diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-10-06 19:28:00 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-10-06 21:39:40 (GMT) |
commit | 4fc5b2b154331fbf35800935889f1d0372334f0a (patch) | |
tree | a87e075516435e0d855a4af6aecb356a517c4b33 /src/latexdocvisitor.h | |
parent | 983507e0a65e5c2d51209740a89311e122e4f389 (diff) | |
download | Doxygen-4fc5b2b154331fbf35800935889f1d0372334f0a.zip Doxygen-4fc5b2b154331fbf35800935889f1d0372334f0a.tar.gz Doxygen-4fc5b2b154331fbf35800935889f1d0372334f0a.tar.bz2 |
Bug 707713 - Add support for dia diagrams
Diffstat (limited to 'src/latexdocvisitor.h')
-rw-r--r-- | src/latexdocvisitor.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/latexdocvisitor.h b/src/latexdocvisitor.h index 13217cf..4073b7f 100644 --- a/src/latexdocvisitor.h +++ b/src/latexdocvisitor.h @@ -110,6 +110,8 @@ class LatexDocVisitor : public DocVisitor void visitPost(DocDotFile *); void visitPre(DocMscFile *); void visitPost(DocMscFile *); + void visitPre(DocDiaFile *); + void visitPost(DocDiaFile *); void visitPre(DocLink *lnk); void visitPost(DocLink *); void visitPre(DocRef *ref); @@ -170,6 +172,11 @@ class LatexDocVisitor : public DocVisitor void endMscFile(bool hasCaption); void writeMscFile(const QCString &fileName); + void startDiaFile(const QCString &fileName,const QCString &width, + const QCString &height, bool hasCaption); + void endDiaFile(bool hasCaption); + void writeDiaFile(const QCString &fileName); + void pushEnabled(); void popEnabled(); |