summaryrefslogtreecommitdiff
path: root/test/testdb-mysql.h
blob: c7cceb352959c8e99efe0c25bb29ece4904e68cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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