-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRawDBFile.cc
More file actions
50 lines (38 loc) · 837 Bytes
/
Copy pathRawDBFile.cc
File metadata and controls
50 lines (38 loc) · 837 Bytes
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
48
49
50
#include <iostream>
#include <stdlib.h>
#include "Record.h"
#include "Schema.h"
#include "RawDBFile.h"
RawDBFile::RawDBFile() {
}
RawDBFile::~RawDBFile() {
}
int RawDBFile::Create(const char *fpath, void *startup) {
cerr << "RawDBFile Called";
return 1;
}
int RawDBFile::Open(const char *fpath) {
cerr << "RawDBFile Called";
return 1;
}
int RawDBFile::Close() {
cerr << "RawDBFile Called";
return 1;
}
void RawDBFile::Load(Schema &myschema, const char *loadpath) {
cerr << "RawDBFile Called";
}
void RawDBFile::MoveFirst() {
cerr << "RawDBFile Called";
}
void RawDBFile::Add(Record &addme) {
cerr << "RawDBFile Called";
}
int RawDBFile::GetNext(Record &fetchme) {
cerr << "RawDBFile Called";
return 1;
}
int RawDBFile::GetNext(Record &fetchme, CNF &cnf, Record &literal) {
cerr << "RawDBFile Called";
return 1;
}