zookeeper-cpp
ZooKeeper Client for C++
client.hpp
1 #pragma once
2 
3 #include <zk/config.hpp>
4 
5 #include <memory>
6 
7 namespace zk::curator
8 {
9 
23 class client final
24 {
25 public:
26  client() noexcept;
27 
28 private:
29  struct impl;
30 
31  std::shared_ptr<impl> _p;
32 };
33 
36 }
A high-level wrapper around zk::client, with a number of simple advantages:
Definition: client.hpp:23