Computer Assited Medical Intervention Tool Kit  version 4.0
SimplisticComponent.h
Go to the documentation of this file.
1 #ifndef SIMPLISTICCOMPONENT_H
2 #define SIMPLISTICCOMPONENT_H
3 
4 #include "CamiTKAPI.h"
5 #include "Component.h"
6 namespace camitk {
7 
25  Q_OBJECT
26 
27 public:
28  static SimplisticComponent * createInstance(QString name);
29 
32 
36  bool addProperty(Property*);
37 
38 private:
39  SimplisticComponent(QString name);
40 
41 };
42 }
43 #endif // SIMPLISTICCOMPONENT_H
This class has been implemented to be able to instanciate a very basic component with NO_REPRESENTATI...
Definition: SimplisticComponent.h:24
Definition: Action.cpp:40
A Component represents something that could be included in the explorer view, the interactive 3D view...
Definition: sdk/libraries/core/component/Component.h:299
#define CAMITK_API
Definition: CamiTKAPI.h:49
void initRepresentation()
this component has no representation
Definition: SimplisticComponent.h:31
This class describes a property that can be used in components and actions or any class that needs to...
Definition: Property.h:260