20 lines
288 B
C++
20 lines
288 B
C++
#include "Global.h"
|
|
#include <iostream>
|
|
|
|
namespace jet {
|
|
|
|
Global::Global() {
|
|
|
|
}
|
|
|
|
Global::~Global() {
|
|
|
|
}
|
|
|
|
void Global::dump() {
|
|
for (auto i = variables.begin(); i != variables.end(); i++)
|
|
std::cout << i->first << "=[" << i->second << "]" << std::endl;
|
|
}
|
|
|
|
}
|