ITK  4.0.0
Insight Segmentation and Registration Toolkit
itkTxtTransformIO.h
Go to the documentation of this file.
00001 /*=========================================================================
00002  *
00003  *  Copyright Insight Software Consortium
00004  *
00005  *  Licensed under the Apache License, Version 2.0 (the "License");
00006  *  you may not use this file except in compliance with the License.
00007  *  You may obtain a copy of the License at
00008  *
00009  *         http://www.apache.org/licenses/LICENSE-2.0.txt
00010  *
00011  *  Unless required by applicable law or agreed to in writing, software
00012  *  distributed under the License is distributed on an "AS IS" BASIS,
00013  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00014  *  See the License for the specific language governing permissions and
00015  *  limitations under the License.
00016  *
00017  *=========================================================================*/
00018 #ifndef __itkTxtTransformIO_h
00019 #define __itkTxtTransformIO_h
00020 #include "itkTransformIOBase.h"
00021 
00022 namespace itk
00023 {
00028 class ITK_EXPORT TxtTransformIO:public TransformIOBase
00029 {
00030 public:
00031   typedef TxtTransformIO                Self;
00032   typedef TransformIOBase               Superclass;
00033   typedef SmartPointer< Self >          Pointer;
00034   typedef TransformBase                 TransformType;
00035   typedef Superclass::TransformPointer  TransformPointer;
00036   typedef Superclass::TransformListType TransformListType;
00038   itkTypeMacro(TxtTransformIO, TransformIOBase);
00039   itkNewMacro(Self);
00041 
00044   virtual bool CanReadFile(const char *);
00045 
00048   virtual bool CanWriteFile(const char *);
00049 
00051   virtual void Read();
00052 
00056   virtual void Write();
00057 
00058   /* Helper function for Read method, used for CompositeTransform reading. */
00059   void ReadComponentFile( std::string Value );
00060 
00061 protected:
00062   TxtTransformIO();
00063   virtual ~TxtTransformIO();
00064 private:
00065