For those of you having problems downloading the version information, it is due to Scorpious2k's Website C&D. I'll be moving the version information and a new version of EQVerCheck that works with the new host shortly. Please be patient (:
__________________
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.
|