-Transmitter::Transmitter(std::string host, int port):
- Connection(sockbuf::sock_dgram) {
- // FIXME - deberia ir en run().
+namespace PlaQui {
+
+namespace Server {
+
+Transmitter::~Transmitter(void) {
+#ifdef DEBUG
+ cerr << __FILE__ << ": destructor." << endl;
+#endif // DEBUG
+}
+
+Transmitter::Transmitter(string& _host, Connection::Port& _port):
+ Connection(sockbuf::sock_dgram, _host, _port) {
+#ifdef DEBUG
+ cerr << __FILE__ << ": _host = " << _host
+ << " | _port = " << _port << endl;
+#endif // DEBUG