1 #ifndef __SP_SCRIPT_H__
2 #define __SP_SCRIPT_H__
4 /*
5 * SVG <script> implementation
6 *
7 * Author:
8 * Felipe C. da S. Sanches <felipe.sanches@gmail.com>
9 *
10 * Copyright (C) 2008 Author
11 *
12 * Released under GNU GPL version 2 or later, read the file 'COPYING' for more information
13 */
15 #include "sp-item.h"
17 #define SP_TYPE_SCRIPT (sp_script_get_type())
18 #define SP_SCRIPT(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), SP_TYPE_SCRIPT, SPScript))
19 #define SP_SCRIPT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), SP_TYPE_SCRIPT, SPScriptClass))
20 #define SP_IS_SCRIPT(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), SP_TYPE_SCRIPT))
21 #define SP_IS_SCRIPT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), SP_TYPE_SCRIPT))
23 /* SPScript */
25 struct SPScript : public SPObject {
26 };
28 struct SPScriptClass {
29 SPObjectClass parent_class;
30 };
32 GType sp_script_get_type();
34 #endif
36 /*
37 Local Variables:
38 mode:c++
39 c-file-style:"stroustrup"
40 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
41 indent-tabs-mode:nil
42 fill-column:99
43 End:
44 */
45 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :