00001
00002
00003
00004
00005
00006
00007 #ifndef COH_REFERENCE_LIBRARY_HPP
00008 #define COH_REFERENCE_LIBRARY_HPP
00009
00010 #include "coherence/lang.ns"
00011
00012 #include "coherence/util/IdentityHashMap.hpp"
00013
00014 COH_OPEN_NAMESPACE3(coherence,io,pof)
00015
00016 using coherence::util::IdentityHashMap;
00017
00018
00019
00020
00021
00022
00023
00024 class COH_EXPORT ReferenceLibrary
00025 : public class_spec<ReferenceLibrary,
00026 extends <Object> >
00027 {
00028 friend class factory<ReferenceLibrary>;
00029
00030
00031
00032 protected:
00033
00034
00035
00036 ReferenceLibrary();
00037
00038
00039
00040
00041 public:
00042
00043
00044
00045
00046
00047
00048
00049 virtual int32_t getIdentity(Object::View v) const;
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060 virtual int32_t registerReference(Object::View v);
00061
00062
00063
00064
00065 protected:
00066
00067
00068
00069 int32_t m_cRefs;
00070
00071
00072
00073
00074
00075 FinalHandle<IdentityHashMap> f_hMapIdentities;
00076 };
00077
00078 COH_CLOSE_NAMESPACE3
00079
00080 #endif // COH_REFERENCE_LIBRARY_HPP
00081