00001
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00033
00034 #ifndef GROOVX_IO_IO_H_UTC20050626084021_DEFINED
00035 #define GROOVX_IO_IO_H_UTC20050626084021_DEFINED
00036
00037 #include "nub/object.h"
00038
00039 namespace rutz
00040 {
00041 class fstring;
00042 }
00043
00044 namespace io
00045 {
00046 class serializable;
00047 class reader;
00048 class writer;
00049
00051 typedef signed long version_id;
00052 }
00053
00055
00066
00067
00068 class io::serializable : public virtual nub::object
00069 {
00070 private:
00071 serializable(const serializable&);
00072 serializable& operator=(const serializable&);
00073
00074 protected:
00076 serializable() throw();
00077
00079 virtual ~serializable() GVX_DTOR_NOTHROW;
00080
00081 public:
00087 virtual void read_from(io::reader& reader) = 0;
00088
00093 virtual void write_to(io::writer& writer) const = 0;
00094
00103 virtual io::version_id class_version_id() const;
00104 };
00105
00106
00107 static const char __attribute__((used)) vcid_groovx_io_io_h_utc20050626084021[] = "$Id: io.h 10065 2007-04-12 05:54:56Z rjpeters $ $HeadURL: file:
00108 #endif // !GROOVX_IO_IO_H_UTC20050626084021_DEFINED