If you are running the server on the same comp as the EQ box it will take a minute for the zone to boot up. Just continue hitting Enter World and it should work eventually.
__________________
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.
|