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