This line:
const Vector< ISocket* >* sockets = ((NetworkSystem*)NetworkAPI())->GetSockets();
With 'GetSockets(~)' defined as:
const Vector< Socket* >* NetworkSystem::GetSockets( )
produces the error:
"cannot convert from 'const Vector<T> *' to 'const Vector<T> *'"
What am I doing wrong here? I just want to get a pointer to a const object.
Thanks as usual guys!






