Perl Quest Channel on IRC
Need some help with perl? Want to give some help? Visit us at irc.eqemulator.net:6667 #perl (or click here if you have an irc client installed) to talk in the Offical EQEmu Perl IRC Channel.
__________________
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.
|