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

17 lines
202 B
C++

#include "v3/include/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;
}