just built KeywordValue core object. Not functional yet.

This commit is contained in:
Brad Arant 2024-06-13 07:06:29 -07:00
parent 9accb60eb9
commit d10ed783fa
2 changed files with 35 additions and 0 deletions

14
KeywordValue.cpp Normal file
View File

@ -0,0 +1,14 @@
#include "KeywordValue.h"
#include <iostream>
namespace jet {
KeywordValue::KeywordValue(coreutils::ZString &data) {
}
KeywordValue::~KeywordValue() {
std::cout << "KeywordValue destruction: " << getLength() << std::endl;
}
}

21
KeywordValue.h Normal file
View File

@ -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