/*************************************************************************** etype.h ------------------- begin : Thu Jun 22 2000 copyright : (C) 2000 by Kamil Dobkowski email : kamildobk@friko.onet.pl ***************************************************************************/ /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef __ETYPE_H #define __ETYPE_H #ifdef __cplusplus extern "C" { #endif typedef enum { PlotCurve = 0, PlotImage = 1, PlotContour = 2, PlotSurface = 3, PlotFigure = 4 } PlotType; typedef enum { EDouble = 0, EFloat = 1, ELong = 2, EUShort = 3, EShort = 4, EUChar = 5 } EType; #ifdef __cplusplus } #endif #endif