Medical Imaging Interaction Toolkit  2025.12.02
Medical Imaging Interaction Toolkit
mitkNodePredicateFunction.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 mitkNodePredicateFunction_h
14 #define mitkNodePredicateFunction_h
15 
16 #include <mitkNodePredicateBase.h>
17 #include <MitkCoreExports.h>
18 #include <functional>
19 
20 namespace mitk
21 {
32  {
33  public:
34  using FunctionType = std::function<bool (const mitk::DataNode *)>;
35 
38 
40 
41  bool CheckNode(const mitk::DataNode *node) const override;
42 
43  protected:
44  explicit NodePredicateFunction(const FunctionType &function);
45 
47  };
48 }
49 
50 #endif
#define MITKCORE_EXPORT
Class for nodes of the DataTree.
Definition: mitkDataNode.h:64
Interface for evaluation conditions used in the DataStorage class GetSubset() method.
Predicate that transfers the check to a specific Callable.
std::function< bool(const mitk::DataNode *)> FunctionType
bool CheckNode(const mitk::DataNode *node) const override
This method will be used to evaluate the node. Has to be overwritten in subclasses.
NodePredicateFunction(const FunctionType &function)
mitkClassMacro(NodePredicateFunction, NodePredicateBase)
mitkNewMacro1Param(NodePredicateFunction, const FunctionType &)
Find image slices visible on a given plane.