00001
00002
00003
00004
00005
00006
00007 #ifndef COH_PORTABLE_OBJECT_SERIALIZER_HPP
00008 #define COH_PORTABLE_OBJECT_SERIALIZER_HPP
00009
00010 #include "coherence/lang.ns"
00011
00012 #include "coherence/io/pof/PofReader.hpp"
00013 #include "coherence/io/pof/PofSerializer.hpp"
00014 #include "coherence/io/pof/PofWriter.hpp"
00015
00016 COH_OPEN_NAMESPACE3(coherence,io,pof)
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 class COH_EXPORT PortableObjectSerializer
00027 : public class_spec<PortableObjectSerializer,
00028 extends<Object>,
00029 implements<PofSerializer> >
00030 {
00031 friend class factory<PortableObjectSerializer>;
00032
00033
00034
00035 protected:
00036
00037
00038
00039
00040
00041
00042
00043 PortableObjectSerializer(int32_t nTypeId);
00044
00045
00046
00047
00048 public:
00049
00050
00051
00052 virtual void serialize(PofWriter::Handle hOut, Object::View v) const;
00053
00054
00055
00056
00057 virtual Object::Holder deserialize(PofReader::Handle hIn) const;
00058
00059
00060
00061
00062 protected:
00063
00064
00065
00066 int32_t m_nTypeId;
00067 };
00068
00069 COH_CLOSE_NAMESPACE3
00070
00071 #endif // COH_PORTABLE_OBJECT_SERIALIZER_HPP