JetCore/KeywordValue.h
2024-07-08 18:32:56 -07:00

23 lines
391 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);
virtual ~KeywordValue();
};
}
#endif