// Spectre 2 // // Douglas Thrift // // $Id$ #include "Mounter.hpp" Mounter::Mounter(const ext::String& config) : Daemon(/*dynamic_cast(this)*/), config(config) { api::Cerr << "Mounter.this = " << this << ios::NewLine; } void Mounter::load() { api::Cerr << "Mounter::load()" << ios::NewLine; loaded = true; } void Mounter::run() { api::Cerr << "Mounter::run()" << ios::NewLine; running = false; }