-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpostgres_protobuf_common.hpp
37 lines (26 loc) · 1016 Bytes
/
postgres_protobuf_common.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef POSTGRES_PROTOBUF_POSTGRES_PROTOBUF_COMMON_HPP_
#define POSTGRES_PROTOBUF_POSTGRES_PROTOBUF_COMMON_HPP_
#include <stdint.h>
#include <string>
#include <utility>
// ===========================================================================
// ==================== Debug macro (requires postgres.h) ====================
// ===========================================================================
#ifdef DEBUG_PRINT
#define PGPROTO_DEBUG(...) ereport(WARNING, (errmsg(__VA_ARGS__)))
#else
#define PGPROTO_DEBUG(...)
#endif
namespace postgres_protobuf {
} // namespace postgres_protobuf
// =======================================================
// ==================== Other helpers ====================
// =======================================================
namespace postgres_protobuf {
class BadProto {
public:
BadProto(std::string&& msg) : msg(std::move(msg)) {}
const std::string msg;
};
} // namespace postgres_protobuf
#endif // POSTGRES_PROTOBUF_POSTGRES_PROTOBUF_COMMON_HPP_