diff options
author | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
---|---|---|
committer | Jef <jef@targetspot.com> | 2024-09-24 08:54:57 -0400 |
commit | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/nde/android/IndexField.h | |
parent | 537bcbc86291b32fc04ae4133ce4d7cac8ebe9a7 (diff) | |
download | winamp-20d28e80a5c861a9d5f449ea911ab75b4f37ad0d.tar.gz |
Initial community commit
Diffstat (limited to 'Src/nde/android/IndexField.h')
-rw-r--r-- | Src/nde/android/IndexField.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Src/nde/android/IndexField.h b/Src/nde/android/IndexField.h new file mode 100644 index 00000000..8b66d315 --- /dev/null +++ b/Src/nde/android/IndexField.h @@ -0,0 +1,37 @@ +/* --------------------------------------------------------------------------- + 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
\ No newline at end of file |