diff options
author | Kurt Zenker <kz@openoffice.org> | 2007-06-19 15:12:20 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2007-06-19 15:12:20 +0000 |
commit | 6b933d6d0ff259f4b8832cea6e7c953bbd834adc (patch) | |
tree | e8cdc64690afd08b9ba954eb7d5a1e5e68d6fde0 | |
parent | 7a6f4e502a73780082151da93774256adfce0aba (diff) |
INTEGRATION: CWS ucbfixes02 (1.7.70); FILE MERGED
2007/05/15 11:52:54 kso 1.7.70.1: #i77134# - HTTP header field names are case insensitive!
-rw-r--r-- | ucb/source/ucp/webdav/DAVResource.hxx | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/ucb/source/ucp/webdav/DAVResource.hxx b/ucb/source/ucp/webdav/DAVResource.hxx index 5e5198ae1703..9cf09b53c19d 100644 --- a/ucb/source/ucp/webdav/DAVResource.hxx +++ b/ucb/source/ucp/webdav/DAVResource.hxx @@ -4,9 +4,9 @@ * * $RCSfile: DAVResource.hxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: hr $ $Date: 2006-06-20 05:33:52 $ + * last change: $Author: kz $ $Date: 2007-06-19 16:12:20 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -38,24 +38,25 @@ #include <vector> -#ifndef _RTL_USTRING_HXX_ -#include <rtl/ustring.hxx> -#endif - -#ifndef _COM_SUN_STAR_BEANS_PROPERTYVALUE_HPP_ -#include <com/sun/star/beans/PropertyValue.hpp> -#endif -#ifndef _COM_SUN_STAR_BEANS_PROPERTY_HPP_ -#include <com/sun/star/beans/Property.hpp> -#endif +#include "rtl/ustring.hxx" +#include "com/sun/star/uno/Any.hxx" namespace webdav_ucp { +struct DAVPropertyValue +{ + rtl::OUString Name; + com::sun::star::uno::Any Value; + bool IsCaseSensitive; + + DAVPropertyValue() : IsCaseSensitive( true ) {} +}; + struct DAVResource { ::rtl::OUString uri; - std::vector < com::sun::star::beans::PropertyValue > properties; + std::vector< DAVPropertyValue > properties; DAVResource() {} DAVResource( const ::rtl::OUString & inUri ) : uri( inUri ) {} |