X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/43203fc1132e402ab5751167ed64196f10f5dedf..2f5c973fdf3f7fb25b13996b66d566c58066f6a0:/Server/src/connection.cpp?ds=sidebyside diff --git a/Server/src/connection.cpp b/Server/src/connection.cpp index 18b5909..408239e 100644 --- a/Server/src/connection.cpp +++ b/Server/src/connection.cpp @@ -31,23 +31,33 @@ # include #endif // DEBUG -PlaQui::Server::Connection::~Connection(void) { +using namespace std; + +namespace PlaQui { + +namespace Server { + +Connection::~Connection(void) { #ifdef DEBUG - std::cerr << __FILE__ << ": destructor." << std::endl; + cerr << __FILE__ << ": destructor." << endl; #endif // DEBUG } -PlaQui::Server::Connection::Connection(const sockbuf::sockdesc& sd): +Connection::Connection(const sockbuf::sockdesc& sd): socket(sd) { #ifdef DEBUG - std::cerr << __FILE__ << ": sd = " << sd.sock << std::endl; + cerr << __FILE__ << ": sd = " << sd.sock << endl; #endif // DEBUG } -PlaQui::Server::Connection::Connection(sockbuf::type type): +Connection::Connection(sockbuf::type type): socket(type) { #ifdef DEBUG - std::cerr << __FILE__ << ": type = " << type << std::endl; + cerr << __FILE__ << ": type = " << type << endl; #endif // DEBUG } +} // namespace Server + +} // namespace PlaQui +