diff options
Diffstat (limited to 'src/latexgen.h')
-rw-r--r-- | src/latexgen.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/latexgen.h b/src/latexgen.h index cf36929..11a0516 100644 --- a/src/latexgen.h +++ b/src/latexgen.h @@ -15,8 +15,8 @@ * */ -#ifndef OUTPUT_H -#define OUTPUT_H +#ifndef LATEXGEN_H +#define LATEXGEN_H #include "outputgen.h" @@ -42,6 +42,8 @@ class LatexGenerator : public OutputGenerator bool isEnabled(OutputType o) { return (o==Latex && active); } OutputGenerator *get(OutputType o) { return (o==Latex) ? this : 0; } + void printDoc(DocNode *); + void startFile(const char *name,const char *manName, const char *title, bool external); void writeFooter(int,bool) {} @@ -287,7 +289,6 @@ class LatexGenerator : public OutputGenerator void writeCodeAnchor(const char *) {} private: - void latin2ToLatex(unsigned char); LatexGenerator(const LatexGenerator &); LatexGenerator &operator=(const LatexGenerator &); int col; |