(svn r8445) -Cleanup: remove some @params from comments as the parameters did not exist anymore and add comments to several variables/functions.

This commit is contained in:
rubidium
2007-01-28 20:47:25 +00:00
parent 2e984e0477
commit f72dde5236
8 changed files with 43 additions and 23 deletions

View File

@@ -120,8 +120,9 @@ protected:
* the grfconfig list of the NetworkGameInfo.
* @param config the GRF to handle
*/
virtual void HandleIncomingNetworkGameInfoGRFConfig(GRFConfig *config) { NOT_REACHED(); }
virtual void HandleIncomingNetworkGameInfoGRFConfig(GRFConfig *config) = 0;
public:
/** On destructing of this class, the socket needs to be closed */
virtual ~NetworkUDPSocketHandler() { this->Close(); }
bool Listen(uint32 host, uint16 port, bool broadcast);