blob: 3ceba2f9ff6a9feafa65a2c75c778fa35bebd469 (
plain)
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
|