#ifndef GLOBALS_H #define GLOBALS_H #include #include #include #include "object.h" // Variables definitions typedef std::map G_varsType; extern G_varsType G_vars; // Functions addresses typedef std::multimap G_funcsType; extern G_funcsType G_funcs; typedef std::vector G_toType; // List of objects to save extern G_toType G_tosave; // List of objects to print extern G_toType G_toprint; void ClearGlobals(); bool Save(const ObjectList* input); bool Print(const ObjectList* input); #endif