Thread: Race Scroller
View Single Post
  #2  
Old 03-11-2005, 02:27 PM
Cisyouc
Demi-God
 
Join Date: Jun 2004
Location: Heaven.
Posts: 1,260
Default

Thats definately client-side. Can't do that.
__________________
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.

Last edited by Cisyouc; 03-11-2005 at 10:28 PM.. Reason: I don't know how to spell apparently.
Reply With Quote