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