/* ==================================================================== * Copyright (c) 2003-2006, Martin Hauner * http://subcommander.tigris.org * * Subcommander is licensed as described in the file doc/COPYING, which * you should have received as part of this distribution. * ==================================================================== */ #ifndef _SVN_PROPGETITEM_H #define _SVN_PROPGETITEM_H // sc #include "util/String.h" namespace svn { class PropGetItem { public: PropGetItem( const sc::String& pathOrUrl, const sc::String& value ); PropGetItem( const PropGetItem& src ); const sc::String& getPathOrUrl() const; const sc::String& getValue() const; private: sc::String _pathOrUrl; sc::String _value; }; } // namespace #endif // _SVN_PROPGETITEM_H