// Share // // Douglas Thrift // // $Id$ #ifndef _Share_hpp_ #define _Share_hpp_ #include #ifdef MENES_PRAGMA_ONCE #pragma once #endif #include #include class Share : public ext::ReferenceCounted { private: mutable _H connection; public: ext::String host, share; api::Path path; Share(const _H& connection, const ext::String& host, const ext::String& share); ~Share() { Unmount(); } void Mount() const; void Unmount() const; }; #endif//_Share_hpp_