Initial commit

This commit is contained in:
2020-02-12 19:57:50 +01:00
commit 8ecca3824b
13 changed files with 440 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#ifndef SQLITESTATEMENT_H
#define SQLITESTATEMENT_H
#include <string>
class sqlite3_stmt;
namespace SQLite {
class SQLiteClient;
class SQLiteStatement
{
public:
SQLiteStatement(SQLiteClient& client, const std::string& query);
~SQLiteStatement();
operator sqlite3_stmt*();
private:
sqlite3_stmt* m_pStatement;
};
} // namespace SQLite
#endif // SQLITESTATEMENT_H