From 68e213319f2a3ee2f90e7bfccae8e5e13492d357 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 2 May 2017 15:53:49 +0200 Subject: remove empty comments found with: git ls-files | xargs grep -Pzl '/\*\* (\*|\s| )*\*/' Change-Id: I1f47bcb94d5a7b290a6c622c6941195fbb578597 Reviewed-on: https://gerrit.libreoffice.org/37159 Tested-by: Jenkins Reviewed-by: Noel Grandin --- hwpfilter/source/hstream.hxx | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) (limited to 'hwpfilter') diff --git a/hwpfilter/source/hstream.hxx b/hwpfilter/source/hstream.hxx index e6654f707dde..e082e3aefd22 100644 --- a/hwpfilter/source/hstream.hxx +++ b/hwpfilter/source/hstream.hxx @@ -23,29 +23,24 @@ #include typedef unsigned char byte; -/** - * Stream class - */ + class HStream { public: HStream(); -/** - * - */ void addData( const byte *buf, size_t aToAdd); -/** - * Read some byte to buf as given size - */ + /** + * Read some byte to buf as given size + */ size_t readBytes( byte *buf, size_t aToRead); -/** - * Skip some byte from stream as given size - */ + /** + * Skip some byte from stream as given size + */ size_t skipBytes( size_t aToSkip ); -/** - * @returns Size of remained stream - */ + /** + * @returns Size of remained stream + */ size_t available() const; private: -- cgit v1.2.3