blob: 65158e038f386bb8661f7c1afca6d6af80e020fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/* ---------------------------------------------------------------------------
Nullsoft Database Engine
--------------------
codename: Near Death Experience
--------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------
ColumnField Class Prototypes
Android (linux) implementation
--------------------------------------------------------------------------- */
#ifndef __COLUMNFIELD_H
#define __COLUMNFIELD_H
#include "../Field.h"
#include "../LinkedList.h"
#include "Table.h"
#include "Scanner.h"
class ColumnField : public Field
{
public:
ColumnField(unsigned char FieldID, const char *FieldName, unsigned char FieldType, Table *parentTable);
ColumnField();
~ColumnField();
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);
void SetDataType(unsigned char type);
bool IsSearchableField() const;
void SetSearchable(bool val);
public:
unsigned char GetDataType(void);
char *GetFieldName(void); // not const because it's an NDE string
protected:
bool searchable;
char *Name;
unsigned char MyType;
};
#endif
|