00001
00002
00003
00004
00005
00006
00007 #ifndef COH_SUBSCRIPT_HANDLE_HPP
00008 #define COH_SUBSCRIPT_HANDLE_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 SubscriptHandle
00026 : public TypedHandle<T>
00027 {
00028
00029
00030 typedef ET ElementType;
00031
00032
00033
00034
00035 public:
00036
00037
00038
00039 SubscriptHandle()
00040 : TypedHandle<T>()
00041 {
00042 }
00043
00044
00045
00046
00047
00048 template<class DT> SubscriptHandle<T, ET, IT>(const TypedHandle<DT>& that)
00049 : TypedHandle<T>(that)
00050 {
00051 }
00052
00053
00054
00055
00056
00057 template<class DT> SubscriptHandle<T, ET, IT>(const TypedHolder<DT>& that)
00058 : TypedHandle<T>(that)
00059 {
00060 }
00061
00062
00063
00064
00065 SubscriptHandle(T* o)
00066 : TypedHandle<T>(o)
00067 {
00068 }
00069
00070
00071
00072
00073 SubscriptHandle<T, ET, IT>(const SubscriptHandle<T, ET, IT>& that)
00074 : TypedHandle<T>(that)
00075 {
00076 }
00077
00078
00079
00080
00081 ElementType& operator[](IT i) const
00082 {
00083 T* po = TypedHandle<T>::m_o;
00084 if (NULL == po)
00085 {
00086 coh_throw_npe(typeid(T));
00087 }
00088 return (*po)[i];
00089 }
00090 };
00091
00092 COH_CLOSE_NAMESPACE2
00093
00094 #endif // COH_SUBSCRIPT_HANDLE_HPP