DAVRequestEnvironment.hxx (6df1ea1f) DAVRequestEnvironment.hxx (59ddfc10)
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 13 unchanged lines hidden (view full) ---

22
23#ifndef _DAVREQUESTENVIRONMENT_HXX_
24#define _DAVREQUESTENVIRONMENT_HXX_
25
26#include <vector>
27#include <rtl/ref.hxx>
28#include "DAVAuthListener.hxx"
29
1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements. See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership. The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance

--- 13 unchanged lines hidden (view full) ---

22
23#ifndef _DAVREQUESTENVIRONMENT_HXX_
24#define _DAVREQUESTENVIRONMENT_HXX_
25
26#include <vector>
27#include <rtl/ref.hxx>
28#include "DAVAuthListener.hxx"
29
30namespace webdav_ucp
30namespace http_dav_ucp
31{
32 typedef std::pair< rtl::OUString, rtl::OUString > DAVRequestHeader;
33 typedef std::vector< DAVRequestHeader > DAVRequestHeaders;
34
35struct DAVRequestEnvironment
36{
37 rtl::OUString m_aRequestURI;
38 rtl::Reference< DAVAuthListener > m_xAuthListener;

--- 9 unchanged lines hidden (view full) ---

48 : m_aRequestURI( rRequestURI ),
49 m_xAuthListener( xListener ),
50 m_aRequestHeaders( rRequestHeaders ),
51 m_xEnv( xEnv ){}
52
53 DAVRequestEnvironment() {}
54};
55
31{
32 typedef std::pair< rtl::OUString, rtl::OUString > DAVRequestHeader;
33 typedef std::vector< DAVRequestHeader > DAVRequestHeaders;
34
35struct DAVRequestEnvironment
36{
37 rtl::OUString m_aRequestURI;
38 rtl::Reference< DAVAuthListener > m_xAuthListener;

--- 9 unchanged lines hidden (view full) ---

48 : m_aRequestURI( rRequestURI ),
49 m_xAuthListener( xListener ),
50 m_aRequestHeaders( rRequestHeaders ),
51 m_xEnv( xEnv ){}
52
53 DAVRequestEnvironment() {}
54};
55
56} // namespace webdav_ucp
56} // namespace http_dav_ucp
57
58#endif // _DAVREQUESTENVIRONMENT_HXX_
57
58#endif // _DAVREQUESTENVIRONMENT_HXX_