# 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) {