Minilogin with DR6
Will this ever be coming back? I loved being able to run EMu locally...
Or does anyone yet know a work around to this that lets me run it locally?
__________________
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.
|