Inkscape
Vector Graphics Editor
Loading...
Searching...
No Matches
svgz.h
Go to the documentation of this file.
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*
3 * Code to handle compressed SVG loading and saving. Almost identical to svg
4 * routines, but separated for simpler extension maintenance.
5 *
6 * Authors:
7 * Lauris Kaplinski <lauris@kaplinski.com>
8 * Ted Gould <ted@gould.cx>
9 * Jon A. Cruz <jon@joncruz.org>
10 *
11 * Copyright (C) 2002-2005 Authors
12 *
13 * Released under GNU GPL v2+, read the file 'COPYING' for more information.
14 */
15
16#ifndef SEEN_SVGZ_H
17#define SEEN_SVGZ_H
18
19#include "svg.h"
20
21namespace Inkscape {
22namespace Extension {
23namespace Internal {
24
25class Svgz : public Svg {
26public:
27 static void init( );
28};
29
30} } } // namespace Inkscape, Extension, Implementation
31#endif // SEEN_SVGZ_H
32
33/*
34 Local Variables:
35 mode:c++
36 c-file-style:"stroustrup"
37 c-file-offsets:((innamespace . 0)(inline-open . 0))
38 indent-tabs-mode:nil
39 fill-column:99
40 End:
41*/
42// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :
static void init()
What would an SVG editor be without loading/saving SVG files. This function sets that up.
Definition svgz.cpp:39
Helper class to stream background task notifications as a series of messages.