//A class that has an initialization lock so that when the lock is activated, any further gets that are missing items in it will report themselves for easier debugging detection.
template<typenameT,typenameO>
classsafemap{
std::map<T,O>map;
boolinitialized=false;
public:
O&operator[](Tkey){
if(initialized&&map.count(key)==0){
std::cout<<"WARNING! Trying to get non-existent key "<<key<<"!"<<std::endl;