1 //
2 // parseinstruments.h
3 //
4 //
5 //
6 //
7 // Author: Adam Tee <adam@ajtee.plus.com>, (C) 2005
8 //
9 // Copyright: See COPYING file that comes with this distribution
10 //
11 //
12 
13 #ifndef PARSEINSTRUMENTS_H
14 #define PARSEINSTRUMENTS_H
15 
16 
17 #include <libxml/parser.h>
18 #include <libxml/tree.h>
19 #include <libxml/xmlmemory.h>
20 #include <denemo/denemo.h>
21 
22 
23 
24 GList *parseInstruments (GList * instruments);
25 InstrumentType lookuptype (gchar * string);
26 #endif
27