1 /* xmldefs.h
2  * Definitions common to importing and exporting Denemo's "native" XML file
3  * format
4  *
5  * for Denemo, a gtk+ frontend to GNU Lilypond
6  * (c) 2001-2005 Eric Galluzzo
7  */
8 
9 #ifndef XMLDEFS_H
10 #define XMLDEFS_H
11 
12 #include <denemo/denemo.h>
13 
14 #include <glib.h>
15 
16 /* The namespace in which built-in Denemo XML elements reside */
17 #define DENEMO_XML_NAMESPACE "http://denemo.org/xmlns/Denemo"
18 /* some strings useful elsewhere */
19 #define    NONE_STRING "None"
20 #define    PIANO_START_STRING "PianoContextStart"
21 #define    PIANO_END_STRING "PianoContextEnd"
22 #define    CHOIR_START_STRING "ChoirContextStart"
23 #define    CHOIR_END_STRING "ChoirContextEnd"
24 #define    GROUP_START_STRING "StaffGroupStart"
25 #define    GROUP_END_STRING "StaffGroupEnd"
26 
27 #define CURRENT_XML_VERSION (8) /* the highest version of the .denemo xml format supported */
28 
29 
30 #endif
31