Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
37
Src/nde/android/IndexField.h
Normal file
37
Src/nde/android/IndexField.h
Normal file
|
@ -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
|
Loading…
Add table
Add a link
Reference in a new issue