1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
#ifndef EMBEDDEDMY_CONNECTION_H #define EMBEDDEDMY_CONNECTION_H #include "my-connection.h" #include "my-error.h" #include <mysql.h> namespace MySQL { namespace Embedded { class Connection : public ::MySQL::Connection { public: Connection(const std::string &); private: }; } } #endif