blob: 1f6e0280e8954e71fecefee8c938a147c3eab2c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef stuff
#define stuff
#include "pq-command.h"
namespace PQ {
class PreparedStatement : public Command {
protected:
PreparedStatement(Connection *, const std::string &, unsigned int);
virtual ~PreparedStatement() = default;
const char * prepare() const;
mutable const char * pstmt;
};
}
#endif
|