Medical Imaging Interaction Toolkit  2018.4.99-389bf124
Medical Imaging Interaction Toolkit
mitkPAVesselDrawer.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 (DKFZ)
6 All rights reserved.
7 
8 Use of this source code is governed by a 3-clause BSD license that can be
9 found in the LICENSE file.
10 
11 ============================================================================*/
12 
13 #ifndef MITKVESSELDRAWER_H
14 #define MITKVESSELDRAWER_H
15 
16 #include "mitkVector.h"
19 #include "mitkPAVector.h"
20 #include "mitkPAVesselProperties.h"
21 
23 
24 //Includes for smart pointer usage
25 #include "mitkCommon.h"
26 #include "itkLightObject.h"
27 
28 namespace mitk {
29  namespace pa {
30  class MITKPHOTOACOUSTICSLIB_EXPORT VesselDrawer : public itk::LightObject
31  {
32  public:
33  mitkClassMacroItkParent(VesselDrawer, itk::LightObject);
34  itkFactorylessNewMacro(Self);
35 
36  void ExpandAndDrawVesselInVolume(
37  VesselProperties::Pointer properties,
38  InSilicoTissueVolume::Pointer volume);
39 
40  protected:
41  VesselDrawer();
42  ~VesselDrawer() override;
43 
44  private:
45  };
46 
47  }
48 }
49 #endif // MITKVESSELDRAWER_H
DataCollection - Class to facilitate loading/accessing structured data.
#define mitkClassMacroItkParent(className, SuperClassName)
Definition: mitkCommon.h:49
#define MITKPHOTOACOUSTICSLIB_EXPORT