~centralelyon2010/inkscape/imagelinks2

6709 by jeff_schiller
Support for title and desc elements when serializing as Plain SVG.
1
#ifndef __SP_DESC_H__
2
#define __SP_DESC_H__
3
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
 */
14
15
#include "sp-object.h"
16
17
#define SP_TYPE_DESC            (sp_desc_get_type ())
18
#define SP_IS_DESC(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SP_TYPE_DESC))
19
20
class SPDesc;
21
class SPDescClass;
22
23
struct SPDesc : public SPObject {
24
};
25
26
struct SPDescClass {
27
	SPObjectClass parent_class;
28
};
29
30
GType sp_desc_get_type (void);
31
32
#endif