diff options
Diffstat (limited to 'src/bltGraph.h')
-rw-r--r-- | src/bltGraph.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/bltGraph.h b/src/bltGraph.h index 84d483e..ecde240 100644 --- a/src/bltGraph.h +++ b/src/bltGraph.h @@ -48,9 +48,14 @@ typedef struct _Graph Graph; typedef struct _Crosshairs Crosshairs; +typedef struct _Axis Axis; class Element; class Legend; +typedef struct { + Axis *x, *y; +} Axis2d; + typedef enum { CID_NONE, CID_AXIS_X, CID_AXIS_Y, CID_ELEM_BAR, CID_ELEM_LINE, CID_MARKER_BITMAP, CID_MARKER_IMAGE, CID_MARKER_LINE, CID_MARKER_POLYGON, @@ -94,8 +99,6 @@ typedef struct { const char **tags; /* Binding tags for the object. */ } GraphObj; -#include "bltGrAxis.h" - typedef struct { Segment2d *segments; int length; |