Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
mitkPropertyExtension.h
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 
17 #ifndef mitkPropertyExtension_h
18 #define mitkPropertyExtension_h
19 
20 #include <MitkCoreExports.h>
21 #include <itkObjectFactory.h>
22 #include <mitkCommon.h>
23 
24 namespace mitk
25 {
28  class MITKCORE_EXPORT PropertyExtension : public itk::LightObject
29  {
30  public:
32  itkFactorylessNewMacro(Self) itkCloneMacro(Self)
33 
34  protected : PropertyExtension();
35  virtual ~PropertyExtension();
36 
37  private:
38  PropertyExtension(const Self &other);
39  Self &operator=(const Self &other);
40  };
41 }
42 
43 #endif
#define MITKCORE_EXPORT
DataCollection - Class to facilitate loading/accessing structured data.
#define mitkClassMacroItkParent(className, SuperClassName)
Definition: mitkCommon.h:53
Base class for all property extensions.