]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/runnable.cpp
Se corrige el bug encontrado por Nico.
[z.facultad/75.42/plaqui.git] / Server / src / runnable.cpp
index 66579acda263b663cd45a67c7e237e3162de3ff7..0c6b477306347ffd64f012fc5b43817b7094bf5d 100644 (file)
 #      include <iostream>
 #endif // DEBUG
 
+PlaQui::Server::Runnable::~Runnable(void) {
+#ifdef DEBUG
+       std::cerr << __FILE__ << ": destructor." << std::endl;
+#endif // DEBUG
+}
+
 PlaQui::Server::Runnable::Runnable(void): thread(0), stop(false) {
+#ifdef DEBUG
+       std::cerr << __FILE__ << ": constructor." << std::endl;
+#endif // DEBUG
 }
 
 void PlaQui::Server::Runnable::static_run(PlaQui::Server::Runnable* runner) {