1*6601ee31SAriel Constenla-Haile /**************************************************************
2*6601ee31SAriel Constenla-Haile  *
3*6601ee31SAriel Constenla-Haile  * Licensed to the Apache Software Foundation (ASF) under one
4*6601ee31SAriel Constenla-Haile  * or more contributor license agreements.  See the NOTICE file
5*6601ee31SAriel Constenla-Haile  * distributed with this work for additional information
6*6601ee31SAriel Constenla-Haile  * regarding copyright ownership.  The ASF licenses this file
7*6601ee31SAriel Constenla-Haile  * to you under the Apache License, Version 2.0 (the
8*6601ee31SAriel Constenla-Haile  * "License"); you may not use this file except in compliance
9*6601ee31SAriel Constenla-Haile  * with the License.  You may obtain a copy of the License at
10*6601ee31SAriel Constenla-Haile  *
11*6601ee31SAriel Constenla-Haile  *   http://www.apache.org/licenses/LICENSE-2.0
12*6601ee31SAriel Constenla-Haile  *
13*6601ee31SAriel Constenla-Haile  * Unless required by applicable law or agreed to in writing,
14*6601ee31SAriel Constenla-Haile  * software distributed under the License is distributed on an
15*6601ee31SAriel Constenla-Haile  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*6601ee31SAriel Constenla-Haile  * KIND, either express or implied.  See the License for the
17*6601ee31SAriel Constenla-Haile  * specific language governing permissions and limitations
18*6601ee31SAriel Constenla-Haile  * under the License.
19*6601ee31SAriel Constenla-Haile  *
20*6601ee31SAriel Constenla-Haile  *************************************************************/
21*6601ee31SAriel Constenla-Haile 
22*6601ee31SAriel Constenla-Haile #ifndef INCLUDED_WEBDAV_UCP_USERAGENT_HXX
23*6601ee31SAriel Constenla-Haile #define INCLUDED_WEBDAV_UCP_USERAGENT_HXX
24*6601ee31SAriel Constenla-Haile 
25*6601ee31SAriel Constenla-Haile #include <rtl/ustring.hxx>
26*6601ee31SAriel Constenla-Haile #include <rtl/instance.hxx>
27*6601ee31SAriel Constenla-Haile 
28*6601ee31SAriel Constenla-Haile namespace http_dav_ucp {
29*6601ee31SAriel Constenla-Haile 
30*6601ee31SAriel Constenla-Haile struct WebDAVUserAgent
31*6601ee31SAriel Constenla-Haile     : public ::rtl::StaticWithInit< rtl::OUString, WebDAVUserAgent >
32*6601ee31SAriel Constenla-Haile {
33*6601ee31SAriel Constenla-Haile     rtl::OUString &operator()() const;
34*6601ee31SAriel Constenla-Haile };
35*6601ee31SAriel Constenla-Haile 
36*6601ee31SAriel Constenla-Haile }
37*6601ee31SAriel Constenla-Haile 
38*6601ee31SAriel Constenla-Haile #endif
39