edit ZMainHead.H a bit
This commit is contained in:
@ -2365,13 +2365,13 @@ namespace ZNsMain
|
|||||||
|
|
||||||
template<typename TType> class ZtCTypeData
|
template<typename TType> class ZtCTypeData
|
||||||
{ public: typedef TType TypeData;
|
{ public: typedef TType TypeData;
|
||||||
static TType& GetObjRef(TType& AR_Type ){return \AR_Type ;}};
|
static TType& GetObjRef(TType& AR_Type ){return AR_Type;}};
|
||||||
template<typename TType> class ZtCTypeData<TType*>
|
template<typename TType> class ZtCTypeData<TType*>
|
||||||
{ public: typedef TType TypeData;
|
{ public: typedef TType TypeData;
|
||||||
static TType& GetObjRef(TType* AP_Type){return *AP_Type;}};
|
static TType& GetObjRef(TType* AP_Type){return *AP_Type;}};
|
||||||
template<typename TType> class ZtCTypeData<TType&>
|
template<typename TType> class ZtCTypeData<TType&>
|
||||||
{ public: typedef TType TypeData;
|
{ public: typedef TType TypeData;
|
||||||
static TType& GetObjRef(TType& AR_Type ){return AR_Type ;}};
|
static TType& GetObjRef(TType& AR_Type ){return AR_Type;}};
|
||||||
|
|
||||||
|
|
||||||
/*////////////////////////////////////////////////////////////////////////////////
|
/*////////////////////////////////////////////////////////////////////////////////
|
||||||
|
Reference in New Issue
Block a user