include/tools/stream.hxx | 4 ++++
1 file changed, 4 insertions(+)
New commits:
commit d75ebbbf58feb1564e11495f1817a16c4950c6f0
Author: Noel Grandin <[email protected]>
AuthorDate: Sun Dec 31 14:09:40 2023 +0200
Commit: Noel Grandin <[email protected]>
CommitDate: Sun Dec 31 20:45:50 2023 +0100
add comment to SvLockBytes
Change-Id: I41280ba13a35d2e89e24a574200f3db60dfd293e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161495
Tested-by: Jenkins
Reviewed-by: Noel Grandin <[email protected]>
diff --git a/include/tools/stream.hxx b/include/tools/stream.hxx
index ad8a90ac70b3..a668f589eb26 100644
--- a/include/tools/stream.hxx
+++ b/include/tools/stream.hxx
@@ -99,6 +99,10 @@ struct SvLockBytesStat
SvLockBytesStat() : nSize(0) {}
};
+/** This is only extended by UcbLockBytes in ucb/ and appears to exist
+to allow UCB to do delayed feeding of data into a SvStream i.e. a kind of a
pipe
+mechanism to allow asynchronous fetching of data.
+*/
class TOOLS_DLLPUBLIC SvLockBytes: public SvRefBase
{
SvStream * m_pStream;