From: Gert van Valkenhoef Date: Wed, 9 Nov 2011 19:28:45 +0000 (+0000) Subject: Document method in Visitor X-Git-Url: https://deadsoftware.ru/gitweb?p=odcread.git;a=commitdiff_plain;h=f2906162189674ce1931eb8cb3907ef8b7fcb925 Document method in Visitor --- diff --git a/visitor.h b/visitor.h index 4b30261..8cb6624 100644 --- a/visitor.h +++ b/visitor.h @@ -35,9 +35,12 @@ namespace odc { */ virtual void foldRight() = 0; /** - * A text piece has been found. + * A text piece has been found (8-bit characters). */ virtual void textShortPiece(const ShortPiece *piece) = 0; + /** + * A text piece has been found (16-bit characters). + */ virtual void textLongPiece(const LongPiece *piece) = 0; }; }