Main Page   Groups   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Namespace Members   Compound Members   File Members   Concepts

itkFEMLightObject.h

Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Insight Segmentation & Registration Toolkit
00004   Module:    $RCSfile: itkFEMLightObject.h,v $
00005   Language:  C++
00006   Date:      $Date: 2003/09/10 14:29:42 $
00007   Version:   $Revision: 1.17 $
00008 
00009   Copyright (c) Insight Software Consortium. All rights reserved.
00010   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
00011 
00012      This software is distributed WITHOUT ANY WARRANTY; without even 
00013      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
00014      PURPOSE.  See the above copyright notices for more information.
00015 
00016 =========================================================================*/
00017 
00018 #ifndef __itkFEMLightObject_h
00019 #define __itkFEMLightObject_h
00020 
00021 #include "itkFEMMacro.h"
00022 #include "itkFEMException.h"
00023 #include <iostream>
00024 
00025 namespace itk {
00026 namespace fem {
00027 
00028 
00029 
00030 
00041 class FEMLightObject
00042 #ifdef FEM_USE_SMART_POINTERS
00043 : public itk::LightObject
00044 #endif
00045 {
00051 #ifndef FEM_USE_SMART_POINTERS
00052   FEM_ABSTRACT_CLASS(FEMLightObject,FEMLightObject)
00053 #else
00057   FEM_ABSTRACT_CLASS(FEMLightObject,itk::LightObject)
00058 #endif
00059 
00060 public:
00065   typedef Self Baseclass;
00066 
00072   virtual Baseclass::Pointer Clone() const = 0;
00073 
00082   virtual int ClassID() const = 0;
00083 
00099   virtual void Read( std::istream& f, void* info );
00100 
00113   virtual void Write( std::ostream& f ) const;
00114 
00124   static FEMLightObject::Pointer CreateFromStream( std::istream& f, void *info );
00125 
00130   static void SkipWhiteSpace( std::istream& f );
00131 
00136   static const std::string whitespaces;
00137 
00138 
00139 #ifdef FEM_USE_SMART_POINTERS
00140 protected:  // If we're using smart pointers, constructors and destructors should be protected.
00141 #endif
00142 
00145   FEMLightObject() : GN(-1) {}
00146 
00150   virtual ~FEMLightObject() {}
00151 
00155   FEMLightObject(const FEMLightObject& o) { GN=o.GN; }
00156 
00157 
00158 public:
00166   int GN;
00167 
00168 };
00169 
00170 
00174 typedef FEMObjectFactory<FEMLightObject> FEMOF;
00175 
00176 
00177 }} // end namespace itk::fem
00178 
00179 #endif // #ifndef __itkFEMLightObject_h

Generated at Wed May 24 23:07:49 2006 for ITK by doxygen 1.3.5 written by Dimitri van Heesch, © 1997-2000