Well. We know they dislike it, otherwise WR or S2K (original) would be up. Because they are kicking and screaming doesn't make it law. (Although, it wouldn't take actual law to get our project frozen for a while). I think they're aware that if they did anything to EQEMu we'd just move the project host outside of the United States and continue.
__________________
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.
|