Quote:
Originally Posted by Aquelin
Have you tried searching the forums more thoroughly?
I could have sworn I saw a complete list somewhere...
|
Really? I searched the results of a few different variations of the keywords model list chr etc, couldnt find anything.
__________________
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.
|