/* * Copyright 2011, Clemens Zeidler * Distributed under the terms of the MIT License. */ #include #include XTab::XTab(BALMLayout* layout) : Variable(layout->Solver()), fALMLayout(layout) { } XTab::~XTab() { fALMLayout->fXTabList.RemoveItem(this); } YTab::YTab(BALMLayout* layout) : Variable(layout->Solver()), fALMLayout(layout) { } YTab::~YTab() { fALMLayout->fYTabList.RemoveItem(this); }