Slicer  4.8
Slicer is a multi-platform, free and open source software package for visualization and medical image computing
vtkMRMLGridTransformNode.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: vtkMRMLGridTransformNode.h,v $
10  Date: $Date: 2006/03/19 17:12:29 $
11  Version: $Revision: 1.13 $
12 
13 =========================================================================auto=*/
14 
15 #ifndef __vtkMRMLGridTransformNode_h
16 #define __vtkMRMLGridTransformNode_h
17 
18 #include "vtkMRMLTransformNode.h"
19 
24 class VTK_MRML_EXPORT vtkMRMLGridTransformNode : public vtkMRMLTransformNode
25 {
26 public:
27  static vtkMRMLGridTransformNode *New();
29  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
30 
31  virtual vtkMRMLNode* CreateNodeInstance() VTK_OVERRIDE;
32 
35  virtual void ReadXMLAttributes( const char** atts) VTK_OVERRIDE;
36 
39  virtual void WriteXML(ostream& of, int indent) VTK_OVERRIDE;
40 
43  virtual void Copy(vtkMRMLNode *node) VTK_OVERRIDE;
44 
47  virtual const char* GetNodeTagName() VTK_OVERRIDE {return "GridTransform";}
48 
49 protected:
54 };
55 
56 #endif
MRML node for representing a transformation between this node space and a parent node space...
void PrintSelf(ostream &os, vtkIndent indent) VTK_OVERRIDE
MRML node for representing a nonlinear transformation to the parent node using a grid transform...
void operator=(const vtkMRMLTransformNode &)
virtual vtkMRMLNode * CreateNodeInstance() VTK_OVERRIDE
MRMLNode methods.
static vtkMRMLTransformNode * New()
Abstract Superclass for all specific types of MRML nodes.
Definition: vtkMRMLNode.h:135