Medical Imaging Interaction Toolkit  2025.12.02
Medical Imaging Interaction Toolkit
mitkCellOperation.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 mitkCellOperation_h
14 #define mitkCellOperation_h
15 
17 #include "mitkCommon.h"
18 #include "mitkOperation.h"
19 #include "mitkVector.h"
20 
21 namespace mitk
22 {
23  //##Documentation
24  //## @brief Operation, that holds everything necessary for an operation on a cell.
25  //##
26  //## @ingroup Undo
28  {
29  public:
31  //##Documentation
32  //##@brief constructor
33  //##
34  //## @param operationType is the type of that operation (see mitkOperation.h; e.g. move or add; Information for StateMachine::ExecuteOperation());
35  //## @param cellId Id of the cell and a vector if needed
36  //## @param vector
37  CellOperation(OperationType operationType, int cellId, Vector3D vector);
38 
39  CellOperation(OperationType operationType, int cellId);
40 
41  ~CellOperation() override{};
42 
43  int GetCellId() { return m_CellId; };
44  Vector3D GetVector() { return m_Vector; };
45  protected:
46  int m_CellId;
48  };
49 } // namespace mitk
50 #endif
#define MITKDATATYPESEXT_EXPORT
Operation, that holds everything necessary for an operation on a cell.
CellOperation(OperationType operationType, int cellId, Vector3D vector)
constructor
CellOperation(OperationType operationType, int cellId)
mitkClassMacro(CellOperation, Operation)
Base class of all Operation-classes.
Definition: mitkOperation.h:30
Find image slices visible on a given plane.
int OperationType
Definition: mitkOperation.h:23