Some missing from merge.

Signed-off-by: Salja <salja2012@hotmail.de>
This commit is contained in:
Salja 2012-08-05 14:54:07 +02:00 committed by Antz
parent ec939a5bce
commit f4be15a7af
1895 changed files with 160408 additions and 53601 deletions

View file

@ -3,10 +3,17 @@
#include <cassert>
#include <string>
#ifdef _DLL
#undef _DLL
#endif
#include "StormLib.h"
class DBCFile
{
public:
DBCFile(const std::string &filename);
DBCFile(HANDLE file);
~DBCFile();
// Open database. It must be openened before it can be used.
@ -107,6 +114,7 @@ public:
size_t getMaxId();
private:
std::string filename;
HANDLE fileHandle;
size_t recordSize;
size_t recordCount;
size_t fieldCount;