00001
00002
00003
00004
00005
00006
00007 #ifndef COH_SUBSCRIPT_HOLDER_HPP
00008 #define COH_SUBSCRIPT_HOLDER_HPP
00009
00010 #include "coherence/lang/compatibility.hpp"
00011
00012 #include "coherence/lang/TypedHandle.hpp"
00013 #include "coherence/lang/TypedHolder.hpp"
00014
00015 COH_OPEN_NAMESPACE2(coherence,lang)
00016
00017
00018
00019
00020
00021
00022
00023
00024 template<class T, class ET, class IT = size32_t>
00025 class SubscriptHolder
00026 : public TypedHolder<T>
00027 {
00028
00029
00030 typedef ET ElementType;
00031
00032
00033
00034
00035 public:
00036
00037
00038
00039 SubscriptHolder()
00040 : TypedHolder<T>()
00041 {
00042 }
00043
00044
00045
00046
00047
00048 template<class DT> SubscriptHolder<T, ET, IT>(const TypedHandle<DT>& that)
00049 : TypedHolder<T>(that)
00050 {
00051 }
00052
00053
00054
00055
00056
00057 template<class DT> SubscriptHolder<T, ET, IT>(const TypedHolder<DT>& that)
00058 : TypedHolder<T>(that)
00059 {
00060 }
00061
00062
00063
00064
00065 SubscriptHolder(T* o)
00066 : TypedHolder<T>(o)
00067 {
00068 }
00069
00070
00071
00072
00073 SubscriptHolder<T, ET, IT>(const SubscriptHolder<T, ET, IT>& that)
00074 : TypedHolder<T>(that)
00075 {
00076 }
00077
00078
00079
00080
00081 ElementType& operator[](IT i) const
00082 {
00083 const T* cpo = TypedHolder<T>::m_cpo;
00084 if (NULL == cpo)
00085 {
00086 coh_throw_npe(typeid(T));
00087 }
00088 return (*cpo)[i];
00089 }
00090 };
00091
00092 COH_CLOSE_NAMESPACE2
00093
00094 #endif // COH_SUBSCRIPT_HOLDER_HPP