00001 00011 // worldlib 00012 #include "worldlib/remote/Client.h" 00013 00014 using namespace std; 00015 using namespace rail::spatial_temporal_learning::worldlib::remote; 00016 00017 Client::Client(const string &host, const uint16_t port) : host_(host) 00018 { 00019 port_ = port; 00020 } 00021 00022 const string &Client::getHost() const 00023 { 00024 return host_; 00025 } 00026 00027 uint16_t Client::getPort() const 00028 { 00029 return port_; 00030 }