Code

r10817@tres: ted | 2006-01-29 15:45:22 -0800
[inkscape.git] / src / extension / internal / ps-out.h
1 /*
2  * A quick hack to use the print output to write out a file.  This
3  * then makes 'save as...' Postscript.
4  *
5  * Authors:
6  *   Ted Gould <ted@gould.cx>
7  *
8  * Copyright (C) 2004 Authors
9  *
10  * Released under GNU GPL, read the file 'COPYING' for more information
11  */
13 #ifndef EXTENSION_INTERNAL_PS_OUT_H
14 #define EXTENSION_INTERNAL_PS_OUT_H
16 #include "extension/implementation/implementation.h"
18 namespace Inkscape {
19 namespace Extension {
20 namespace Internal {
22 class PsOutput : Inkscape::Extension::Implementation::Implementation {
24 public:
25     bool check(Inkscape::Extension::Extension *module);
26     void save(Inkscape::Extension::Output *mod,
27               SPDocument *doc,
28               gchar const *uri);
29     static void init();
30 };
32 } } }  /* namespace Inkscape, Extension, Implementation */
34 #endif /* !EXTENSION_INTERNAL_PS_OUT_H */
36 /*
37   Local Variables:
38   mode:c++
39   c-file-style:"stroustrup"
40   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
41   indent-tabs-mode:nil
42   fill-column:99
43   End:
44 */
45 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :