Code

Filters. New custom predefined filters (all ABCs, Neon draw, Color shilf, Silhouette...
[inkscape.git] / src / extension / internal / svgz.h
1 /*
2  * Code to handle compressed SVG loading and saving. Almost identical to svg
3  * routines, but separated for simpler extension maintenance.
4  *
5  * Authors:
6  *   Lauris Kaplinski <lauris@kaplinski.com>
7  *   Ted Gould <ted@gould.cx>
8  *   Jon A. Cruz <jon@joncruz.org>
9  *
10  * Copyright (C) 2002-2005 Authors
11  *
12  * Released under GNU GPL, read the file 'COPYING' for more information
13  */
15 #ifndef SEEN_SVGZ_H
16 #define SEEN_SVGZ_H
18 #include "svg.h"
20 namespace Inkscape {
21 namespace Extension {
22 namespace Internal {
24 class Svgz : public Svg {
25 public:
26     static void init( void );
27 };
29 } } }  // namespace Inkscape, Extension, Implementation
30 #endif // SEEN_SVGZ_H
32 /*
33   Local Variables:
34   mode:c++
35   c-file-style:"stroustrup"
36   c-file-offsets:((innamespace . 0)(inline-open . 0))
37   indent-tabs-mode:nil
38   fill-column:99
39   End:
40 */
41 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :