summaryrefslogtreecommitdiff
path: root/io/source/stm
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2001-09-26 14:55:26 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2001-09-26 14:55:26 +0000
commitd057184925101734815c86f1a1d72ef141d6ddac (patch)
tree073420b4f7c3645a799f4f9ffb202c39987cd2d1 /io/source/stm
parent25a78fc9dccceac0bc9696729bcc461901ab9b34 (diff)
#65293#: exception specifications
Diffstat (limited to 'io/source/stm')
-rw-r--r--io/source/stm/streamhelper.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/io/source/stm/streamhelper.hxx b/io/source/stm/streamhelper.hxx
index 6c6c154a968d..70e97fd75df9 100644
--- a/io/source/stm/streamhelper.hxx
+++ b/io/source/stm/streamhelper.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: streamhelper.hxx,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:24:18 $
+ * last change: $Author: hr $ $Date: 2001-09-26 15:55:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -113,8 +113,8 @@ public:
virtual void readAt( sal_Int32 nPos, Sequence<sal_Int8> & , sal_Int32 nBytesToRead ) const
throw( IRingBuffer_OutOfBoundsException )=0;
virtual sal_Int32 getSize() const throw( ) =0;
- virtual void forgetFromStart( sal_Int32 nBytesToForget ) throw()=0;
- virtual void forgetFromEnd( sal_Int32 nBytesToForget ) throw()=0;
+ virtual void forgetFromStart( sal_Int32 nBytesToForget ) throw(IRingBuffer_OutOfBoundsException)=0;
+ virtual void forgetFromEnd( sal_Int32 nBytesToForget ) throw(IRingBuffer_OutOfBoundsException)=0;
virtual void shrink() throw() = 0;
virtual ~IRingBuffer() {};
};