// // C++ Implementation: kxeshellmanager // // Description: // // // Author: Adam Charytoniuk , (C) 2004 // // Copyright: See COPYING file that comes with this distribution // // #include "kxeshellmanager.h" #include "kxmleditorshell.h" #include KXEShellManager::KXEShellManager() { } KXEShellManager::~KXEShellManager() { } void KXEShellManager::addShell(KXMLEditorShell* pShell) { /* for (unsigned int i=0; islotShellAdded(pShell); pShell->slotShellAdded(m_shells.at(i)); } */ m_shells.append(pShell); } void KXEShellManager::removeShell(KXMLEditorShell* pShell) { m_shells.remove(pShell); /* for (unsigned int i=0; islotShellRemoved(pShell); } */ } /*! \fn KXEShellManager::shells() */ TQPtrList* KXEShellManager::shells() { return &m_shells; }