#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