1 /*
2 *
3 * Authors:
4 * Michael Forbes <miforbes-inkscape@mbhs.edu>
5 *
6 * Copyright (C) 2004 Authors
7 *
8 * Released under GNU GPL, read the file 'COPYING' for more information
9 */
11 #ifndef EXTENSION_INTERNAL_LATEX_OUT_H
12 #define EXTENSION_INTERNAL_LATEX_OUT_H
14 #include "extension/implementation/implementation.h"
16 namespace Inkscape {
17 namespace Extension {
18 namespace Internal {
20 class LatexOutput : Inkscape::Extension::Implementation::Implementation { //This is a derived class
22 public:
23 LatexOutput(); // Empty constructor
25 virtual ~LatexOutput();//Destructor
27 bool check(Inkscape::Extension::Extension *module); //Can this module load (always yes for now)
29 void save(Inkscape::Extension::Output *mod, // Save the given document to the given filename
30 SPDocument *doc,
31 gchar const *filename);
33 static void init(void);//Initialize the class
34 };
36 } } } /* namespace Inkscape, Extension, Implementation */
38 #endif /* EXTENSION_INTERNAL_LATEX_OUT_H */
40 /*
41 Local Variables:
42 mode:c++
43 c-file-style:"stroustrup"
44 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
45 indent-tabs-mode:nil
46 fill-column:99
47 End:
48 */
49 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :