00001 /*========================================================================= 00002 00003 Program: Medical Imaging & Interaction Toolkit 00004 Language: C++ 00005 Date: $Date$ 00006 Version: $Revision: -1 $ 00007 00008 Copyright (c) German Cancer Research Center, Division of Medical and 00009 Biological Informatics. All rights reserved. 00010 See MITKCopyright.txt or http://www.mitk.org/copyright.html for details. 00011 00012 This software is distributed WITHOUT ANY WARRANTY; without even 00013 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00014 PURPOSE. See the above copyright notices for more information. 00015 00016 =========================================================================*/ 00017 #include "QmitkBaseFunctionalityComponent.h" 00018 #include <itkCommand.h> 00019 00020 #include <QmitkDataStorageComboBox.h> 00021 #include <mitkDataNode.h> 00022 00023 /*************** CONSTRUCTOR ***************/ 00024 QmitkBaseFunctionalityComponent::QmitkBaseFunctionalityComponent(QObject *parent, const char *name) 00025 : QmitkBaseComponent(parent, name), 00026 m_ParentMitkImage(NULL) 00027 { 00028 } 00029 00030 /*************** DESTRUCTOR ***************/ 00031 QmitkBaseFunctionalityComponent::~QmitkBaseFunctionalityComponent() 00032 { 00033 } 00034 00035 void QmitkBaseFunctionalityComponent::ImageSelected(const mitk::DataNode* /*item*/) 00036 { 00037 00038 } 00039 00040 void QmitkBaseFunctionalityComponent::DataStorageChanged(mitk::DataStorage::Pointer /*ds*/) 00041 { 00042 00043 } 00044 00045 mitk::DataStorage::Pointer QmitkBaseFunctionalityComponent::GetDefaultDataStorage() 00046 { 00047 return m_DataStorage; 00048 } 00049