diff options
Diffstat (limited to 'Database/database.h')
-rw-r--r-- | Database/database.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Database/database.h b/Database/database.h index 222573d..c010e66 100644 --- a/Database/database.h +++ b/Database/database.h @@ -14,6 +14,7 @@ class Database : public Base { void setStart(DatabaseCell * newStart) { start = newStart; } void setEnd(DatabaseCell * newEnd) { end = newEnd; } Segment * getSegment(Uint32 id) { + // TODO: have a hash table. DatabaseCell * cursor; for (cursor = start; start; cursor = cursor->getNext()) |