1 /* Fo
2  * fo-numeric.h: Numeric datatype
3  *
4  * Copyright (C) 2001 Sun Microsystems
5  * Copyright (C) 2007 Menteith Consulting Ltd
6  *
7  * See COPYING for the status of this software.
8  */
9 
10 #ifndef __FO_NUMERIC_PRIVATE_H__
11 #define __FO_NUMERIC_PRIVATE_H__
12 
13 #include <libfo/datatype/fo-datatype.h>
14 #include <libfo/datatype/fo-datatype-private.h>
15 
16 G_BEGIN_DECLS
17 
18 struct _FoNumeric
19 {
20   FoDatatype parent_instance;
21 };
22 
23 struct _FoNumericClass
24 {
25   FoDatatypeClass parent_class;
26 
27 };
28 
29 G_END_DECLS
30 
31 #endif /* !__FO_NUMERIC_PRIVATE_H__ */
32