// Share // // Douglas Thrift // // $Id$ #ifndef _Share_hpp_ #define _Share_hpp_ #include #ifdef MENES_PRAGMA_ONCE #pragma once #endif #include #include #include "Connector.hpp" class Share : public ext::ReferenceCounted { private: mutable _R connector; public: static api::Path shares; api::Address host; cse::String share; api::Path path; Share(const _R& connector, const api::Address& host, const cse::String& share); ~Share(); }; #endif//_Share_hpp_