Code

Store cached icons to disk between runs, and invalidate/purge as needed.
[inkscape.git] / src / sp-title.h
1 #ifndef __SP_TITLE_H__
2 #define __SP_TITLE_H__
4 /*
5  * SVG <title> 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_TITLE           (sp_title_get_type ())
18 #define SP_IS_TITLE(obj)        (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SP_TYPE_TITLE))
20 class SPTitle;
21 class SPTitleClass;
23 struct SPTitle : public SPObject {
24 };
26 struct SPTitleClass {
27         SPObjectClass parent_class;
28 };
30 GType sp_title_get_type (void);
32 #endif