21#ifndef __ANTARES_TOOLBOX_MAP_CONTAINER_HXX__
22#define __ANTARES_TOOLBOX_MAP_CONTAINER_HXX__
28inline void Manager::deallocationStackAdd(Item* it)
30 pStackDeallocation.insert(it);
33inline void Manager::deallocationStackRemove(Item* it)
35 pStackDeallocation.erase(it);
38inline bool Manager::deallocationStackExists(Item* it)
40 return pStackDeallocation.find(it) != pStackDeallocation.end();
T * add()
Add a new node in the map.
Definition manager.hxx:49
bool loadFromStudy(Data::Study &study)
Load the layout from an existing study.
Definition manager.cpp:85
bool loadFromAttachedStudy()
Load the layout from the attached study.
Definition manager.hxx:43