Woodlife Treestrider: Your second reply to this thread has been deleted. Consider this a warning for that reply and your replies on this thread.
Rich: Hope you get everything sorted out 
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.
|