22 lines
261 B
C++
22 lines
261 B
C++
#ifndef __Global_h__
|
|
#define __Global_h__
|
|
|
|
#include "MString.h"
|
|
#include <map>
|
|
|
|
namespace jet {
|
|
|
|
class Global {
|
|
|
|
public:
|
|
Global();
|
|
virtual ~Global();
|
|
|
|
std::map<coreutils::MString, coreutils::MString> variables;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|