Initial revision

This commit is contained in:
cvs
2000-02-07 10:38:55 +00:00
commit fdc6b051c9
846 changed files with 230218 additions and 0 deletions

27
xytable.h Normal file
View File

@ -0,0 +1,27 @@
/*------------------------------------------------------------------------
X Y T A B L E
a helper class for holding an X-Y list of values.
copyright: see copyright.h
Mark Koennecke, June 1999
----------------------------------------------------------------------------*/
#ifndef XYTABLE
#define XYTABLE
typedef struct __XYTABLE *pXYTable;
/*------------------------------------------------------------------------*/
int XYClear(pXYTable self);
int XYAdd(pXYTable self, float x, float y);
int XYWrite(pXYTable self, FILE *fd);
int XYSendUU(pXYTable self, SConnection *pCon);
int XYList(pXYTable self, SConnection *pCon);
/*----------------------- interpreter interface --------------------------*/
int XYFactory(SConnection *pCon, SicsInterp *pSics, void *pData,
int argc, char *argv[]);
int XYAction(SConnection *pCon, SicsInterp *pSics, void *pData,
int argc, char *argv[]);
#endif