Quote:
Originally Posted by Melwin
If I could count the amount of times I've given out my address on the internet, I'd be...a damn good counter. In fact, I think I've done it twice on the WR forums, see if you can find it!
Internet tough guys really don't concern me.
|
Melwin`s Address
Do I get a cookie??
__________________
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.
|