summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav/SerfSession.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/webdav/SerfSession.hxx')
-rw-r--r--ucb/source/ucp/webdav/SerfSession.hxx42
1 files changed, 21 insertions, 21 deletions
diff --git a/ucb/source/ucp/webdav/SerfSession.hxx b/ucb/source/ucp/webdav/SerfSession.hxx
index e9fb8d2681d9..e595c17da44c 100644
--- a/ucb/source/ucp/webdav/SerfSession.hxx
+++ b/ucb/source/ucp/webdav/SerfSession.hxx
@@ -108,9 +108,9 @@ public:
serf_connection_t* getSerfConnection();
// DAVSession methods
- virtual bool CanUse( const OUString & inUri ) SAL_OVERRIDE;
+ virtual bool CanUse( const OUString & inUri ) override;
- virtual bool UsesProxy() SAL_OVERRIDE;
+ virtual bool UsesProxy() override;
const DAVRequestEnvironment & getRequestEnvironment() const
{ return m_aEnv; }
@@ -122,7 +122,7 @@ public:
const std::vector< OUString > & inPropNames,
std::vector< DAVResource > & ioResources,
const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
// propnames
virtual void
@@ -130,41 +130,41 @@ public:
const Depth inDepth,
std::vector< DAVResourceInfo >& ioResInfo,
const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
virtual void
PROPPATCH( const OUString & inPath,
const std::vector< ProppatchValue > & inValues,
const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
virtual void
HEAD( const OUString & inPath,
const std::vector< OUString > & inHeaderNames,
DAVResource & ioResource,
const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
bool isHeadRequestInProgress();
virtual com::sun::star::uno::Reference< com::sun::star::io::XInputStream >
GET( const OUString & inPath,
const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
virtual void
GET( const OUString & inPath,
com::sun::star::uno::Reference<
com::sun::star::io::XOutputStream > & ioOutputStream,
const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
virtual com::sun::star::uno::Reference< com::sun::star::io::XInputStream >
GET( const OUString & inPath,
const std::vector< OUString > & inHeaderNames,
DAVResource & ioResource,
const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
virtual void
GET( const OUString & inPath,
@@ -173,14 +173,14 @@ public:
const std::vector< OUString > & inHeaderNames,
DAVResource & ioResource,
const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
virtual void
PUT( const OUString & inPath,
const com::sun::star::uno::Reference<
com::sun::star::io::XInputStream > & inInputStream,
const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
virtual com::sun::star::uno::Reference< com::sun::star::io::XInputStream >
POST( const OUString & inPath,
@@ -189,7 +189,7 @@ public:
const com::sun::star::uno::Reference<
com::sun::star::io::XInputStream > & inInputStream,
const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
virtual void
POST( const OUString & inPath,
@@ -200,50 +200,50 @@ public:
com::sun::star::uno::Reference<
com::sun::star::io::XOutputStream > & oOutputStream,
const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
virtual void
MKCOL( const OUString & inPath,
const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
virtual void
COPY( const OUString & inSourceURL,
const OUString & inDestinationURL,
const DAVRequestEnvironment & rEnv,
bool inOverWrite )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
virtual void
MOVE( const OUString & inSourceURL,
const OUString & inDestinationURL,
const DAVRequestEnvironment & rEnv,
bool inOverWrite )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
virtual void DESTROY( const OUString & inPath,
const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
// set new lock.
virtual void LOCK( const OUString & inURL,
com::sun::star::ucb::Lock & inLock,
const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
// refresh existing lock.
virtual sal_Int64 LOCK( const OUString & inURL,
sal_Int64 nTimeout,
const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
virtual void UNLOCK( const OUString & inURL,
const DAVRequestEnvironment & rEnv )
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
// helpers
virtual void abort()
- throw ( DAVException ) SAL_OVERRIDE;
+ throw ( DAVException ) override;
const OUString & getHostName() const { return m_aUri.GetHost(); }
int getPort() const { return m_aUri.GetPort(); }