20 lines
597 B
C
20 lines
597 B
C
|
#pragma once
|
||
|
#include <stdio.h>
|
||
|
#include "Record.h"
|
||
|
#include "../nu/PtrDeque2.h"
|
||
|
class IndexRecord : public RecordBase
|
||
|
{
|
||
|
public:
|
||
|
IndexRecord(int RecordPos, int insertionPoint, VFILE *FileHandle,Table *p);
|
||
|
void BuildCollaboration();
|
||
|
bool NeedFix();
|
||
|
IndexField *GetIndexByName(const wchar_t *name);
|
||
|
int GetColumnCount() { return Fields.size() - 1; }
|
||
|
bool CheckIndexing(int v);
|
||
|
int WriteFields(Table *ParentTable);
|
||
|
int WriteIndex(Table *ParentTable);
|
||
|
typedef bool (*FieldsWalker)(IndexRecord *record, Field *entry, void *context);
|
||
|
void WalkFields(FieldsWalker callback, void *context);
|
||
|
};
|
||
|
|