Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
mitkMAPAlgorithmInfoObject.cpp
Go to the documentation of this file.
1 /*===================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 
5 Copyright (c) German Cancer Research Center,
6 Division of Medical and Biological Informatics.
7 All rights reserved.
8 
9 This software is distributed WITHOUT ANY WARRANTY; without
10 even the implied warranty of MERCHANTABILITY or FITNESS FOR
11 A PARTICULAR PURPOSE.
12 
13 See LICENSE.txt or http://www.mitk.org for details.
14 
15 ===================================================================*/
16 
18 
19 namespace mitk
20 {
21 
23  m_Info(NULL)
24 {
25 
26 }
27 
29  m_Info(info)
30 {
31 
32 }
33 
34 const ::map::deployment::DLLInfo* MAPAlgorithmInfoObject::GetInfo() const
35 {
36  return m_Info;
37 }
38 
40 {
41  if (const MAPAlgorithmInfoObject* other = dynamic_cast<const MAPAlgorithmInfoObject*>(obj))
42  {
43  return m_Info == other->m_Info;
44  }
45 
46  return false;
47 }
48 
49 }
bool operator==(const berry::Object *obj) const
const ::map::deployment::DLLInfo * GetInfo() const
Light weight base class for most BlueBerry classes.
Definition: berryObject.h:78
DataCollection - Class to facilitate loading/accessing structured data.
static void info(const char *fmt,...)
Definition: svm.cpp:100
itk::SmartPointer< const Self > ConstPointer
MAPAlgorithmInfoObject(::map::deployment::DLLInfo::ConstPointer info)