25 lines
522 B
C++
25 lines
522 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,
|
|
std::map<coreutils::MString, coreutils::MString> &keywords);
|
|
virtual ~KeywordValue();
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|