diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2015-12-24 03:43:16 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-05-04 20:44:32 +0100 |
commit | 94927bfef6548ac20118586bfcd51e60b296e569 (patch) | |
tree | 90cc2d268219acc412321433421fb8fa7c798c5b /libmysqlpp/embeddedmy-connection.h | |
parent | Standalone split (diff) | |
download | libdbpp-mysql-94927bfef6548ac20118586bfcd51e60b296e569.tar.bz2 libdbpp-mysql-94927bfef6548ac20118586bfcd51e60b296e569.tar.xz libdbpp-mysql-94927bfef6548ac20118586bfcd51e60b296e569.zip |
Beginnings of embbeded MySQL
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 + |