No, I think there is a difference.
I'm no expert on this kind of thing, but I'm pretty sure that what thats saying is that if I was to take the EQEMu code and make changes to it and submit it to the devs, then they would have to release that because its under the GPL. If I take the EQEMu source and privately make my own additions, my code is no longer free open source. However if I were to DISTRIBUTE my binaries, because EQEMu is open source, I would then have to release the code. Does that make sense?
__________________
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.
|