Main Page   Namespace List   Class Hierarchy   Compound List   File List   Compound Members   File Members  

browse_server.cpp

Go to the documentation of this file.
00001 
00002 #ifdef WIN32
00003 #pragma warning (disable:4786)
00004 #endif
00005 
00006 #include "API/Network/browse_server.h"
00007 #include "browse_server_generic.h"
00008 
00010 // CL_BrowseServer construction:
00011 
00012 CL_BrowseServer::CL_BrowseServer(
00013         const CL_IPAddress &browse_master,
00014         const std::string &app_id,
00015         const CL_IPAddress &server_address,
00016         const std::string &description)
00017 : impl(NULL)
00018 {
00019         impl = new CL_BrowseServer_Generic(
00020                 browse_master,
00021                 app_id,
00022                 server_address,
00023                 description);
00024 }
00025 
00026 CL_BrowseServer::~CL_BrowseServer()
00027 {
00028         delete impl;
00029 }
00030 
00032 // CL_BrowseServer attributes:
00033 
00035 // CL_BrowseServer operations:
00036 
00037 void CL_BrowseServer::set_description(const std::string &description)
00038 {
00039         impl->set_description(description);
00040 }
00041 
00043 // CL_BrowseServer implementation:

Generated at Wed Apr 4 19:53:59 2001 for ClanLib by doxygen1.2.6 written by Dimitri van Heesch, © 1997-2001