summaryrefslogtreecommitdiff
path: root/udkapi/com/sun/star/io
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-09-13 10:00:10 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-09-14 18:24:48 +0200
commit82e94dcaab4534f657458a2461033d686f10cb10 (patch)
tree6cd5d598f4fe48d0110e5bd1b0d3767799544d85 /udkapi/com/sun/star/io
parentd33453d1ca13369d9132c304c80acf19e9b1ad4e (diff)
fdo#46808, Add @since tags to new IDL interfaces
Change-Id: Ib351d92d071f6e93ec5eac93c0ab964cef7e7e2f
Diffstat (limited to 'udkapi/com/sun/star/io')
-rw-r--r--udkapi/com/sun/star/io/XPipe.idl7
1 files changed, 3 insertions, 4 deletions
diff --git a/udkapi/com/sun/star/io/XPipe.idl b/udkapi/com/sun/star/io/XPipe.idl
index f33a97704761..3bdac33eb272 100644
--- a/udkapi/com/sun/star/io/XPipe.idl
+++ b/udkapi/com/sun/star/io/XPipe.idl
@@ -28,8 +28,7 @@
module com { module sun { module star { module io {
-// DocMerge from xml: service com::sun::star::io::Pipe
-/** the implementation of an output stream and an input stream.
+/** The implementation of an output stream and an input stream.
<p>
All data written through the outputstream is buffered until it is
read again from the input stream. Often two different threads access
@@ -37,13 +36,13 @@ module com { module sun { module star { module io {
<p> With the pipe-service, an outputstream can be converted into an
input stream at the cost of an additional buffer.
+
+ @since LibreOffice 3.7
*/
published interface XPipe
{
- // DocMerge: empty anyway
interface com::sun::star::io::XOutputStream;
- // DocMerge: empty anyway
interface com::sun::star::io::XInputStream;
};