/** * Removes a #Window from the "advanced window list" (#advanced_windows). */ void RemoveExpert(Window *window) { expert_windows.remove(window); }
/** * Add a #Window to the "destruct" list: the object will be deleted * by the destructor of this class. This means that the caller * doesn't have to keep track of the specified Window, because this * WndForm is now responsible for freeing memory. */ void AddDestruct(Window *window) { destruct_windows.push_front(window); }
/** * Adds a #Window to the "advanced window list" (#advanced_windows). */ void AddExpert(Window *window) { expert_windows.push_back(window); }
/** * Adds a #Window to the "advanced window list" (#advanced_windows). */ void AddAdvanced(Window *window) { advanced_windows.push_back(window); }