00001 00002 #ifdef WIN32 00003 #pragma warning (disable:4786) 00004 #endif 00005 00006 #include "API/Network/browse_master.h" 00007 #include "browse_master_generic.h" 00008 #include <stdlib.h> 00009 00011 // CL_BrowseMaster construction: 00012 00013 CL_BrowseMaster::CL_BrowseMaster(const CL_IPAddress &bind_address) 00014 : impl(NULL) 00015 { 00016 impl = new CL_BrowseMaster_Generic(bind_address); 00017 } 00018 00019 CL_BrowseMaster::~CL_BrowseMaster() 00020 { 00021 delete impl; 00022 } 00023 00025 // CL_BrowseMaster attributes: 00026 00028 // CL_BrowseMaster operations: 00029 00031 // CL_BrowseMaster implementation:
1.2.6 written by Dimitri van Heesch,
© 1997-2001