// 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 _H connection; public: api::Address host; cse::String share; api::Path path; Share(const _H& connection, const api::Address& host, const cse::String& share); ~Share(); }; #endif//_Share_hpp_