summaryrefslogtreecommitdiff
path: root/lib/input/mysqlStmt.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/input/mysqlStmt.h')
-rw-r--r--lib/input/mysqlStmt.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/input/mysqlStmt.h b/lib/input/mysqlStmt.h
index a42e0db..69e62d4 100644
--- a/lib/input/mysqlStmt.h
+++ b/lib/input/mysqlStmt.h
@@ -3,12 +3,14 @@
#include "dbConn.h"
#include "dbRecordSet.h"
-#include "dbTypes.h"
#include <cstddef>
#include <initializer_list>
#include <memory>
#include <mysql.h>
+namespace MyGrate {
+ class DbValue;
+}
namespace MyGrate::Input {
using StmtPtr = std::unique_ptr<MYSQL_STMT, decltype(&mysql_stmt_close)>;