Started work on database handling.

This commit is contained in:
2024-04-08 03:10:24 -07:00
parent 405acb026f
commit beba947c69
22 changed files with 918 additions and 44 deletions

36
include/ehs/db/DbTable.h Normal file
View File

@@ -0,0 +1,36 @@
#pragma once
#include "ehs/Version.h"
#include "ehs/Array.h"
#include "DbVarTmpl.h"
#include "DbObject.h"
namespace ehs
{
class DbTable
{
private:
UInt_64 hashId;
Str_8 id;
Version version;
Array<DbVarTmpl> varTmpls;
Array<DbObject> objects;
public:
DbTable();
DbTable();
UInt_64 GetHashId() const;
Str_8 GetId() const;
Version GetVersion() const;
bool CreateVariable(Str_8 id, DbType type);
bool CreateVariable(Str_8 id, DbType type, UInt_64 size);
void Save();
};
}