diff options
Diffstat (limited to 'libmysqlpp/embeddedmy-connection.h')
-rw-r--r-- | libmysqlpp/embeddedmy-connection.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libmysqlpp/embeddedmy-connection.h b/libmysqlpp/embeddedmy-connection.h new file mode 100644 index 0000000..3ceba2f --- /dev/null +++ b/libmysqlpp/embeddedmy-connection.h @@ -0,0 +1,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 + |