summaryrefslogtreecommitdiff
path: root/test/testdb-mysql.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/testdb-mysql.h')
-rw-r--r--test/testdb-mysql.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/testdb-mysql.h b/test/testdb-mysql.h
new file mode 100644
index 0000000..c7cceb3
--- /dev/null
+++ b/test/testdb-mysql.h
@@ -0,0 +1,16 @@
+#ifndef MYGRATE_TESTING_MYSQL_H
+#define MYGRATE_TESTING_MYSQL_H
+
+#include <input/mysqlConn.h>
+
+namespace MyGrate {
+ namespace Testing {
+ class MySQLDB : public Input::MySQLConn {
+ public:
+ MySQLDB();
+ ~MySQLDB();
+ };
+ }
+}
+
+#endif