etcd-cpp-apiv3/src/v3/KeyValue.cpp

17 lines
199 B
C++

#include "etcd/v3/KeyValue.hpp"
etcdv3::KeyValue::KeyValue()
{
ttl = 0;
}
void etcdv3::KeyValue::set_ttl(int ttl)
{
this->ttl = ttl;
}
int etcdv3::KeyValue::get_ttl() const
{
return ttl;
}