Re: hmm
Quote:
Originally Posted by Ciblnt
Make sense?
|
No.
http://www.eqemulator.net/forums/viewtopic.php?t=17658
Mind you its a sticky in the tutorial section called PLAY GUIDE.
-edit-
Made post a little less flaming.
__________________
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.
|