#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