Slicer  5.1
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
vtkMRMLMarkupsPlaneJsonStorageNode.h
Go to the documentation of this file.
1 /*==============================================================================
2 
3  Program: 3D Slicer
4 
5  Portions (c) Copyright Brigham and Women's Hospital (BWH) All Rights Reserved.
6 
7  See COPYRIGHT.txt
8  or http://www.slicer.org/copyright/copyright.txt for details.
9 
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15 
16  This file was originally developed by Kyle Sunderland, PerkLab, Queen's University
17  and was supported through CANARIE's Research Software Program, Cancer
18  Care Ontario, OpenAnatomy, and Brigham and Women's Hospital through NIH grant R01MH112748.
19 
20 ==============================================================================*/
21 
26 
27 #ifndef __vtkMRMLMarkupsPlaneJsonStorageNode_h
28 #define __vtkMRMLMarkupsPlaneJsonStorageNode_h
29 
30 // Markups includes
31 #include "vtkSlicerMarkupsModuleMRMLExport.h"
33 
34 class vtkMRMLMarkupsNode;
36 
38 class VTK_SLICER_MARKUPS_MODULE_MRML_EXPORT vtkMRMLMarkupsPlaneJsonStorageNode : public vtkMRMLMarkupsJsonStorageNode
39 {
40 public:
43 
44  vtkMRMLNode* CreateNodeInstance() override;
45 
48  const char* GetNodeTagName() override { return "MarkupsPlaneJsonStorage"; };
49 
50  bool CanReadInReferenceNode(vtkMRMLNode* refNode) override;
51 
52 protected:
57 
58  class vtkInternalPlane;
59  friend class vtkInternalPlane;
60 };
61 
62 #endif
vtkMRMLNode * CreateNodeInstance() override
Create instance of the default node. Like New only virtual.
bool CanReadInReferenceNode(vtkMRMLNode *refNode) override
const char * GetNodeTagName() override
Get node XML tag name (like Storage, Model)
void operator=(const vtkMRMLMarkupsJsonStorageNode &)
Abstract Superclass for all specific types of MRML nodes.
Definition: vtkMRMLNode.h:167
static vtkMRMLMarkupsJsonStorageNode * New()