21 #ifndef __ANTARES_TOOLBOX_MAP_CONTAINER_HXX__
22 #define __ANTARES_TOOLBOX_MAP_CONTAINER_HXX__
24 namespace Antares::Map
26 inline void Manager::deallocationStackAdd(Item* it)
28 pStackDeallocation.insert(it);
31 inline void Manager::deallocationStackRemove(Item* it)
33 pStackDeallocation.erase(it);
36 inline bool Manager::deallocationStackExists(Item* it)
38 return pStackDeallocation.find(it) != pStackDeallocation.end();
T * add()
Add a new node in the map.
Definition: manager.hxx:47
bool loadFromStudy(Data::Study &study)
Load the layout from an existing study.
Definition: manager.cpp:83
bool loadFromAttachedStudy()
Load the layout from the attached study.
Definition: manager.hxx:41