X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/802f79cdb0d688127b8a639cd3173d801a1466cd..eb72ddd1b0a1004fa3da51db5b7790370cc5c2e9:/Server/src/runnable.cpp diff --git a/Server/src/runnable.cpp b/Server/src/runnable.cpp index 66579ac..0c6b477 100644 --- a/Server/src/runnable.cpp +++ b/Server/src/runnable.cpp @@ -32,7 +32,16 @@ # include #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) {