]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/connection.cpp
Ya se mandan seniales cuando se reciben comandos.
[z.facultad/75.42/plaqui.git] / Server / src / connection.cpp
index 18b5909f25bb4df3d33a6b1732d4cd1afc7e5072..408239e45bc206e15016d5f3c4247f3852e8eb0e 100644 (file)
 #      include <iostream>
 #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
+