From: Gert van Valkenhoef <g.h.m.van.valkenhoef@rug.nl>
Date: Wed, 9 Nov 2011 19:28:45 +0000 (+0000)
Subject: Document method in Visitor
X-Git-Url: http://deadsoftware.ru/gitweb?a=commitdiff_plain;h=f2906162189674ce1931eb8cb3907ef8b7fcb925;p=odcread.git

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;
 	};
 }