qbolt/qbolt/boltdb.h

20 lines
236 B
C++

#ifndef BOLTDB_H
#define BOLTDB_H
#include "interop.h"
class BoltDB
{
protected:
BoltDB();
GoInt64 gmsDbRef;
public:
static BoltDB* createFrom(QString filePath, QString &errorOut);
~BoltDB();
};
#endif // BOLTDB_H