22 lines
356 B
C++
22 lines
356 B
C++
#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
|