1 #ifndef __PGS_TYPES_H__
2 #define __PGS_TYPES_H__
3 
4 /* Include this file if you want to have access to all data types. */
5 
6 /*
7  * box was the last added data type
8  */
9 #include "box.h"
10 
11 /* PGS_DATA_TYPES Data type IDs */
12 #define PGS_TYPE_SPoint    1	/* Spherical point */
13 #define PGS_TYPE_SCIRCLE   2	/* Spherical circle */
14 #define PGS_TYPE_SELLIPSE  3	/* Spherical ellipse */
15 #define PGS_TYPE_SLine	   4	/* Spherical line */
16 #define PGS_TYPE_SPATH	   5	/* Spherical path */
17 #define PGS_TYPE_SPOLY	   6	/* Spherical polygon */
18 #define PGS_TYPE_SBOX	   7	/* Spherical box */
19 
20 #endif
21