15 lines
255 B
C++
15 lines
255 B
C++
#include "KeywordValue.h"
|
|
#include <iostream>
|
|
|
|
namespace jet {
|
|
|
|
KeywordValue::KeywordValue(coreutils::ZString &data) {
|
|
|
|
}
|
|
|
|
KeywordValue::~KeywordValue() {
|
|
std::cout << "KeywordValue destruction: " << getLength() << std::endl;
|
|
}
|
|
|
|
}
|