Last I heard, Mangoo is working on 3.0, which will read a table structure from an ini file so it will never go out of date, and he will be releasing the source.
__________________
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.
|