Quote:
Originally Posted by Wiz
GW down to staff drama?
Who'd have thought.
|
My thoughts exactly.
On a side note, let me just say now that if this thread gets too roudy it will be locked.
__________________
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.
|