Quote:
Originally Posted by sotonin
you can get a domain for $7.95 in a couple hundred places around the net. Cheap as hell these days
|
You can get free ones (not com, but others) with some looking.
__________________
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.
|