#ifndef GLOBALS_H #define GLOBALS_H #include #include #include #include #include "object.h" // Functions addresses typedef std::multimap G_funcsType; extern G_funcsType G_funcs; // Types for variables and printsave store typedef std::map VarType; typedef std::vector ExecType; /* // Variables definitions extern G_VarType G_Vars; // List of objects to save extern G_ExecType G_ToSave; // List of objects to print extern G_ExecType G_ToPrint; */ // Loaded modules typedef std::vector G_libsType; extern G_libsType G_libs; void ClearGlobals(); bool Save(const ObjectList* input); bool Print(const ObjectList* input); #endif