diff --git a/KeywordValue.cpp b/KeywordValue.cpp new file mode 100644 index 0000000..0ef32ae --- /dev/null +++ b/KeywordValue.cpp @@ -0,0 +1,14 @@ +#include "KeywordValue.h" +#include + +namespace jet { + + KeywordValue::KeywordValue(coreutils::ZString &data) { + + } + + KeywordValue::~KeywordValue() { + std::cout << "KeywordValue destruction: " << getLength() << std::endl; + } + +} diff --git a/KeywordValue.h b/KeywordValue.h new file mode 100644 index 0000000..343278f --- /dev/null +++ b/KeywordValue.h @@ -0,0 +1,21 @@ +#ifndef __KeywordValue_h__ +#define __KeywordValue_h__ + +#include "MString.h" + +namespace jet { + + /// + /// KeywordValue will read the data ZString until a double quote (") is reached. + /// + + class KeywordValue : public coreutils::MString { + + public: + KeywordValue(coreutils::ZString &data); + virtual ~KeywordValue(); + }; + +} + +#endif