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