Slicer  4.8
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
vtkMRMLHierarchyStorageNode.h
Go to the documentation of this file.
1 /*=auto=========================================================================
2 
3  Portions (c) Copyright 2005 Brigham and Women's Hospital (BWH) All Rights Reserved.
4 
5  See COPYRIGHT.txt
6  or http://www.slicer.org/copyright/copyright.txt for details.
7 
8  Program: 3D Slicer
9  Module: $RCSfile: vtkMRMLHierarchyStorageNode.h,v $
10  Date: $Date: 2006/03/19 17:12:29 $
11  Version: $Revision: 1.8 $
12 
13 =========================================================================auto=*/
14 
15 #ifndef __vtkMRMLHierarchyStorageNode_h
16 #define __vtkMRMLHierarchyStorageNode_h
17 
18 #include "vtkMRMLStorageNode.h"
19 
25 class VTK_MRML_EXPORT vtkMRMLHierarchyStorageNode : public vtkMRMLStorageNode
26 {
27 public:
28  static vtkMRMLHierarchyStorageNode *New();
30  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
31 
32  virtual vtkMRMLNode* CreateNodeInstance() VTK_OVERRIDE;
33 
34  // Description:
35  // Get node XML tag name (like Storage, Model)
36  virtual const char* GetNodeTagName() VTK_OVERRIDE {return "HierarchyStorage";}
37 
39  virtual bool CanReadInReferenceNode(vtkMRMLNode *refNode) VTK_OVERRIDE;
40 protected:
45 
46  // Initialize all the supported read file types
47  virtual void InitializeSupportedReadFileTypes() VTK_OVERRIDE;
48 
49  // Initialize all the supported write file types
50  virtual void InitializeSupportedWriteFileTypes() VTK_OVERRIDE;
51 
52  // Read data and set it in the referenced node
53  virtual int ReadDataInternal(vtkMRMLNode *refNode) VTK_OVERRIDE;
54 
55  // Write data from a referenced node
56  virtual int WriteDataInternal(vtkMRMLNode *refNode) VTK_OVERRIDE;
57 };
58 
59 #endif
virtual int ReadDataInternal(vtkMRMLNode *refNode)
virtual void InitializeSupportedReadFileTypes()
MRML node for representing a no-op hierarchy storage.
void operator=(const vtkMRMLStorageNode &)
virtual vtkMRMLNode * CreateNodeInstance() VTK_OVERRIDE=0
Create instance of the default node. Like New only virtual.
A supercalss for other storage nodes.
void PrintSelf(ostream &os, vtkIndent indent) VTK_OVERRIDE
virtual void InitializeSupportedWriteFileTypes()
virtual int WriteDataInternal(vtkMRMLNode *refNode)
Abstract Superclass for all specific types of MRML nodes.
Definition: vtkMRMLNode.h:135
virtual bool CanReadInReferenceNode(vtkMRMLNode *refNode)=0