9 lines
174 B
C++
9 lines
174 B
C++
|
|
#include "tlv.h"
|
||
|
|
|
||
|
|
TLVNode::TLVNode(const uint16_t type)
|
||
|
|
: type_(type) {}
|
||
|
|
|
||
|
|
TLVNode::TLVNode(const uint16_t type, const std::string value)
|
||
|
|
: type_(type),
|
||
|
|
value_(value) {}
|