You can have a simple construct which recursively removes all the pointers from a given type as below:
template<typename T>
struct ActualType { typedef T type; };
template<typename T>
struct ActualType<T*> { typedef typename ActualType<T>::type type; };
Below is the inline wrapper function to recursively find out the actual value from a given pointer or non-pointer types;
template<typename T>
typename ActualType<T>::type ActualValue (const T &obj) { return obj; }
template<typename T>
typename ActualType<T>::type ActualValue (T *p) { return ActualValue(*p); }
And just use it as:
template<typename T>
struct MyPointer
{
T p;
typename ActualType<T>::type operator *() { return ActualValue(p); }
//^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ^^^^^^^^^^^^^^
};
In this example, it removes all the pointers from a given type, but as per the need you can configure the ActualType<> and ActualValue<>. There won't be any compiler error even if you declare MyPointer<> with a non-pointer type.
Here is a working demo for a single pointer and no pointer types.
T* pand the type to returnT operator*()– Loki Astari Sep 4 '11 at 22:13pis a pointer. – Mehrdad Sep 4 '11 at 23:13operator*as well. – Toolbox Sep 4 '11 at 23:50