00001
00002
00003
00004
00005
00006
00007 #ifndef COH_IDENTITY_HOLDER_HPP
00008 #define COH_IDENTITY_HOLDER_HPP
00009
00010 #include "coherence/lang.ns"
00011
00012 #include "coherence/io/pof/PofBufferReader.hpp"
00013
00014 COH_OPEN_NAMESPACE3(coherence,io,pof)
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 class COH_EXPORT IdentityHolder
00026 : public class_spec<IdentityHolder,
00027 extends <Object> >
00028 {
00029 friend class factory<IdentityHolder>;
00030
00031
00032
00033 public:
00034
00035
00036
00037
00038
00039
00040 static void set(PofBufferReader::Handle hReader, int32_t nId);
00041
00042
00043
00044
00045
00046
00047
00048
00049 static void reset(PofBufferReader::Handle hReader, int32_t nId, Object::Holder oh);
00050 };
00051
00052 COH_CLOSE_NAMESPACE3
00053
00054 #endif // COH_IDENTITY_HOLDER_HPP
00055