23 lines
452 B
C++
23 lines
452 B
C++
#ifndef __KeywordValue_h__
|
|
#define __KeywordValue_h__
|
|
|
|
#include "MString.h"
|
|
#include "Global.h"
|
|
|
|
namespace jet {
|
|
|
|
///
|
|
/// KeywordValue will read the data ZString and convert any variable references.
|
|
///
|
|
|
|
class KeywordValue : public coreutils::MString {
|
|
|
|
public:
|
|
KeywordValue(coreutils::ZString data, Global &global, std::map<coreutils::MString, coreutils::MString> &variables);
|
|
virtual ~KeywordValue();
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|