Seeing as 0.6.2 is going to be the last version for a while as the dev team regroups, I'd say 0.6.2 would be more useful at this point.
__________________
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.
|