javaman: There's a key element you're missing here. We can't do anything about it. We can't just ask Sony if we can redistrubute their files, and doing so without their permission would get the project crushed. It would. They've already crushed 3? 4? of our longstanding servers. The titanium version has been proposed, which would relieve us from that problem, but who knows if that actually is going to follow through or not.
The problem is not what we're doing, but that we can't do anything else.
__________________
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.
|