Quote:
Originally Posted by Zkhava
if someone wants me to post the lore, i will 
|
Please do post it but quote it from EQLive not just a synopsis. 
__________________
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.
|