// Spectre 2 // // Douglas Thrift // // $Id$ #ifndef _Mounter_hpp_ #define _Mounter_hpp_ #include "Share.hpp" #ifdef MENES_PRAGMA_ONCE #pragma once #endif struct Mounter { static bool workable(const Share& share) { return !share.mounted() && share.mountable(); } static int work(const Share& share); }; #endif//_Mounter_hpp_