etcd-cpp-apiv3/src/json_constants.hpp

21 lines
526 B
C++

#ifndef __ETCD_JSON_CONSTANTS_HPP__
#define __ETCD_JSON_CONSTANTS_HPP__
namespace etcd
{
extern char const * JSON_KEY;
extern char const * JSON_DIR;
extern char const * JSON_VALUE;
extern char const * JSON_CREATED;
extern char const * JSON_MODIFIED;
extern char const * JSON_ERROR_CODE;
extern char const * JSON_MESSAGE;
extern char const * JSON_ACTION;
extern char const * JSON_NODE;
extern char const * JSON_NODES;
extern char const * JSON_PREV_NODE;
extern char const * JSON_ETCD_INDEX;
};
#endif