summaryrefslogtreecommitdiff
path: root/include/ucbhelper/std_inputstream.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/ucbhelper/std_inputstream.hxx')
-rw-r--r--include/ucbhelper/std_inputstream.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/include/ucbhelper/std_inputstream.hxx b/include/ucbhelper/std_inputstream.hxx
index c0b09854dd36..896a1c1c064e 100644
--- a/include/ucbhelper/std_inputstream.hxx
+++ b/include/ucbhelper/std_inputstream.hxx
@@ -39,11 +39,11 @@ namespace ucbhelper
~StdInputStream();
virtual css::uno::Any SAL_CALL queryInterface ( const css::uno::Type& rType )
- throw ( css::uno::RuntimeException, std::exception );
+ throw ( css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
- virtual void SAL_CALL acquire( ) throw ( );
+ virtual void SAL_CALL acquire( ) throw ( ) SAL_OVERRIDE;
- virtual void SAL_CALL release( ) throw ( );
+ virtual void SAL_CALL release( ) throw ( ) SAL_OVERRIDE;
virtual sal_Int32 SAL_CALL
readBytes ( css::uno::Sequence< sal_Int8 >& aData,
@@ -51,7 +51,7 @@ namespace ucbhelper
throw ( css::io::NotConnectedException,
css::io::BufferSizeExceededException,
css::io::IOException,
- css::uno::RuntimeException, std::exception );
+ css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual sal_Int32 SAL_CALL
readSomeBytes ( css::uno::Sequence< sal_Int8 >& aData,
@@ -59,26 +59,26 @@ namespace ucbhelper
throw ( css::io::NotConnectedException,
css::io::BufferSizeExceededException,
css::io::IOException,
- css::uno::RuntimeException, std::exception );
+ css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL
skipBytes ( sal_Int32 nBytesToSkip )
throw ( css::io::NotConnectedException,
css::io::BufferSizeExceededException,
css::io::IOException,
- css::uno::RuntimeException, std::exception );
+ css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual sal_Int32 SAL_CALL
available ( )
throw ( css::io::NotConnectedException,
css::io::IOException,
- css::uno::RuntimeException, std::exception );
+ css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual void SAL_CALL
closeInput ( )
throw ( css::io::NotConnectedException,
css::io::IOException,
- css::uno::RuntimeException, std::exception );
+ css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
/** XSeekable
@@ -88,18 +88,18 @@ namespace ucbhelper
seek ( sal_Int64 location )
throw ( css::lang::IllegalArgumentException,
css::io::IOException,
- css::uno::RuntimeException, std::exception );
+ css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual sal_Int64 SAL_CALL
getPosition ( )
- throw ( css::io::IOException, css::uno::RuntimeException, std::exception );
+ throw ( css::io::IOException, css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual sal_Int64 SAL_CALL
getLength ( )
throw ( css::io::IOException,
- css::uno::RuntimeException, std::exception );
+ css::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
private: