summaryrefslogtreecommitdiff
path: root/lib/input/mysqlConn.h
blob: fa3712cad0822f9be5a3f63f71e9debf6f577bd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef MYGRATE_INPUT_MYSQLCONN_H
#define MYGRATE_INPUT_MYSQLCONN_H

#include <mysql.h>

namespace MyGrate::Input {
	class MySQLConn : public MYSQL {
	public:
		MySQLConn(const char * const host, const char * const user, const char * const pass, unsigned short port);
		~MySQLConn();
	};
}

#endif