zookeeper-cpp
ZooKeeper Client for C++
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Groups
config.hpp
1 #pragma once
2 
5 
8 #ifdef ZKPP_USER_CONFIG
9 # include ZKPP_USER_CONFIG
10 #endif
11 
12 #define ZKPP_VERSION_MAJOR 0
13 #define ZKPP_VERSION_MINOR 2
14 #define ZKPP_VERSION_PATCH 3
15 
22 #ifndef ZKPP_DEBUG
23 # define ZKPP_DEBUG 0
24 #endif
25 
27 
28 namespace zk
29 {
30 
33 
36 template <typename T>
37 using ptr = T*;
38 
40 
41 }
T * ptr
A simple, unowned pointer.
Definition: config.hpp:37