From 94927bfef6548ac20118586bfcd51e60b296e569 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Thu, 24 Dec 2015 03:43:16 +0000 Subject: Beginnings of embbeded MySQL --- libmysqlpp/embeddedmy-connection.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 libmysqlpp/embeddedmy-connection.h (limited to 'libmysqlpp/embeddedmy-connection.h') 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 + +namespace MySQL { + namespace Embedded { + class Connection : public ::MySQL::Connection { + public: + Connection(const std::string &); + + private: + }; + } +} + +#endif + -- cgit v1.2.3