just built KeywordValue core object. Not functional yet.
This commit is contained in:
parent
9accb60eb9
commit
d10ed783fa
14
KeywordValue.cpp
Normal file
14
KeywordValue.cpp
Normal 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
21
KeywordValue.h
Normal 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
|
Loading…
x
Reference in New Issue
Block a user