ITK
4.1.0
Insight Segmentation and Registration Toolkit
|
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 __itkMatlabTransformIO_h 00019 #define __itkMatlabTransformIO_h 00020 #include "itkTransformIOBase.h" 00021 00022 namespace itk 00023 { 00028 class ITK_EXPORT MatlabTransformIO:public TransformIOBase 00029 { 00030 public: 00031 typedef MatlabTransformIO 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(MatlabTransformIO, 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 protected: 00059 MatlabTransformIO(); 00060 virtual ~MatlabTransformIO(); 00061 }; 00062 } 00063 #endif // __itkMatlabTransformIO_h 00064