Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
mitkNodePredicateIsDWI.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 
18 #ifndef MITKNODEPREDICATEISDWI_H_HEADER_INCLUDED_
19 #define MITKNODEPREDICATEISDWI_H_HEADER_INCLUDED_
20 
22 
23 #include "mitkNodePredicateBase.h"
24 #include "mitkBaseProperty.h"
25 #include "mitkBaseData.h"
26 
27 namespace mitk {
28 
35  {
36  public:
38  itkFactorylessNewMacro(NodePredicateIsDWI)
39 
40  //##Documentation
41  //## @brief Standard Destructor
42  virtual ~NodePredicateIsDWI();
43 
44  //##Documentation
45  //## @brief Checks, if the node's data contains a property that is equal to m_ValidProperty
46  virtual bool CheckNode(const mitk::DataNode* node) const override;
47 
48  protected:
49  //##Documentation
50  //## @brief Constructor to check for a named property
52  };
53 
54 } // namespace mitk
55 
56 #endif /* MITKNODEPREDICATEISDWI_H_HEADER_INCLUDED_ */
DataCollection - Class to facilitate loading/accessing structured data.
#define MITKDIFFUSIONCORE_EXPORT
#define mitkClassMacro(className, SuperClassName)
Definition: mitkCommon.h:44
Interface for evaluation conditions used in the DataStorage class GetSubset() method.
Predicate that evaluates whether a given node contains a diffusion weighted image.
Class for nodes of the DataTree.
Definition: mitkDataNode.h:66