home *** CD-ROM | disk | FTP | other *** search
- #include "datapriv.hpp"
-
-
- /********************* FIELD FUNCTIONS *************************/
-
- // This is the constructor for a field, which is put first
- // on a linked list
-
- /********************* CONSTRUCTOR *****************************/
-
- field::field(int inumber,char *iname,char itype,int ilen,
- int irdp,int irecpos)
- {
- number=inumber;
- strncpy(name,iname,10); name[10]=0;
- type=itype;
- len=ilen;
- rdp=irdp;
-
- recpos=irecpos;
- }
-
- /********************** DESTRUCTOR *****************************/
-
- // This is the destructor for a field, which also cleans up the pointers
-
- field::~field(void)
- {
- }
-
-