JetCore/Global.cpp
2024-02-16 20:16:14 -08:00

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;
}
}