Thread: Dark Horizons
View Single Post
  #11  
Old 11-25-2005, 12:33 PM
Cisyouc
Demi-God
 
Join Date: Jun 2004
Location: Heaven.
Posts: 1,260
Default

Woodlife Treestrider: Your second reply to this thread has been deleted. Consider this a warning for that reply and your replies on this thread.

Rich: Hope you get everything sorted out
__________________
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.