// Spectre 2 // // Douglas Thrift // // $Id$ #ifndef _Unmounter_hpp_ #define _Unmounter_hpp_ #include "Daemon.hpp" #ifdef MENES_PRAGMA_ONCE #pragma once #endif class Unmounter : public Daemon { private: const ext::String& config; virtual void load(); virtual void run(); public: Unmounter(const ext::String& config); }; #endif // _Unmounter_hpp_