Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
mitkTubeElement.h
Go to the documentation of this file.
1 /*===================================================================
2 
3 The Medical Imaging Interaction Toolkit (MITK)
4 Copyright (c) German Cancer Research Center,
5 Division of Medical and Biological Informatics.
6 All rights reserved.
7 
8 This software is distributed WITHOUT ANY WARRANTY; without
9 even the implied warranty of MERCHANTABILITY or FITNESS FOR
10 A PARTICULAR PURPOSE.
11 
12 See LICENSE.txt or http://www.mitk.org for details.
13 
14 ===================================================================*/
15 
16 #ifndef _MITK_TubeElement_H
17 #define _MITK_TubeElement_H
18 
19 #include <MitkTubeGraphExports.h>
20 
21 #include <mitkPoint.h>
22 
23 namespace mitk
24 {
29  {
30  public:
31  virtual ~TubeElement(){};
32 
36  virtual void SetCoordinates(Point3D coordinates) = 0;
37 
41  virtual const Point3D &GetCoordinates() const = 0;
42 
48  virtual bool operator==(const TubeElement &right) const = 0;
49 
50  }; // class
51 
52 } // namespace
53 #endif
#define MITKTUBEGRAPH_EXPORT
DataCollection - Class to facilitate loading/accessing structured data.
Abstract class for elements which describes tubular structur.
MITKCORE_EXPORT bool operator==(const InteractionEvent &a, const InteractionEvent &b)
virtual ~TubeElement()