Code

Extensions. XAML export improvements.
[inkscape.git] / src / sp-desc.h
1 #ifndef __SP_DESC_H__
2 #define __SP_DESC_H__
4 /*
5  * SVG <desc> implementation
6  *
7  * Authors:
8  *   Jeff Schiller <codedread@gmail.com>
9  *
10  * Copyright (C) 2008 Jeff Schiller
11  *
12  * Released under GNU GPL, read the file 'COPYING' for more information
13  */
15 #include "sp-object.h"
17 #define SP_TYPE_DESC            (sp_desc_get_type ())
18 #define SP_IS_DESC(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SP_TYPE_DESC))
20 class SPDesc;
21 class SPDescClass;
23 struct SPDesc : public SPObject {
24 };
26 struct SPDescClass {
27         SPObjectClass parent_class;
28 };
30 GType sp_desc_get_type (void);
32 #endif