12345678910111213141516171819202122232425262728293031323334353637 |
- /* ---------------------------------------------------------------------------
- Nullsoft Database Engine
- --------------------
- codename: Near Death Experience
- --------------------------------------------------------------------------- */
- /* ---------------------------------------------------------------------------
- IndexField Class Prototypes
- --------------------------------------------------------------------------- */
- #ifndef __INDEXFIELD_H
- #define __INDEXFIELD_H
- class IndexField : public Field
- {
- public:
- IndexField(unsigned char id, int Pos, int type, const char *FieldName);
- IndexField();
- ~IndexField();
- virtual void ReadTypedData(const uint8_t *, size_t len);
- virtual void WriteTypedData(uint8_t *, size_t len);
- virtual size_t GetDataSize(void);
- virtual int Compare(Field *Entry);
- void InitField(void);
- char *GetIndexName(void);
- int TranslateToIndex(int Id, IndexField *index);
- Index *index; // TODO: make protected
- protected:
- int Position;
- int DataType;
- char *Name;
- };
- #endif
|