00001 //============================================================================= 00002 // This file is part of VTKEdge. See vtkedge.org for more information. 00003 // 00004 // Copyright (c) 2010 Kitware, Inc. 00005 // 00006 // VTKEdge may be used under the terms of the BSD License 00007 // Please see the file Copyright.txt in the root directory of 00008 // VTKEdge for further information. 00009 // 00010 // Alternatively, you may see: 00011 // 00012 // http://www.vtkedge.org/vtkedge/project/license.html 00013 // 00014 // 00015 // For custom extensions, consulting services, or training for 00016 // this or any other Kitware supported open source project, please 00017 // contact Kitware at sales@kitware.com. 00018 // 00019 // 00020 //============================================================================= 00090 #ifndef __vtkKWESerializableObject_h 00091 #define __vtkKWESerializableObject_h 00092 00093 #include "vtkObject.h" 00094 #include "VTKEdgeConfigure.h" // include configuration header 00095 00096 class vtkKWESerializer; 00097 00098 class VTKEdge_IO_EXPORT vtkKWESerializableObject : public vtkObject 00099 { 00100 public: 00101 static vtkKWESerializableObject *New(); 00102 vtkTypeRevisionMacro(vtkKWESerializableObject,vtkObject); 00103 00107 virtual void Serialize(vtkKWESerializer*) {} 00108 00109 protected: 00110 vtkKWESerializableObject(); 00111 ~vtkKWESerializableObject(); 00112 00113 private: 00114 vtkKWESerializableObject(const vtkKWESerializableObject&); // Not implemented. 00115 void operator=(const vtkKWESerializableObject&); // Not implemented. 00116 }; 00117 00118 #endif
1.7.1