summaryrefslogtreecommitdiff
path: root/ACEXML/parser/parser
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-08-29 14:42:00 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-08-29 14:42:00 +0000
commita9f4d673e5600269eceffab4532f1a4b82d7794a (patch)
treed43002939297c8cd3c6c4452b1e480fce1607abb /ACEXML/parser/parser
parent1cdd401da81d2113b695fcf96be8dfc957b37275 (diff)
downloadATCD-a9f4d673e5600269eceffab4532f1a4b82d7794a.tar.gz
ChangeLogTag:Thu Aug 29 09:40:20 2002 Nanbor Wang <nanbor@cs.wustl.edu>
Diffstat (limited to 'ACEXML/parser/parser')
-rw-r--r--ACEXML/parser/parser/Parser.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/ACEXML/parser/parser/Parser.h b/ACEXML/parser/parser/Parser.h
index 68401b5bf0c..bcb31d43a62 100644
--- a/ACEXML/parser/parser/Parser.h
+++ b/ACEXML/parser/parser/Parser.h
@@ -154,9 +154,9 @@ public:
* whitespace after proper conversion. Null if there's no
* whitespace found.
*
- * @retval The first none-white space characters (which will be
+ * @return The first none-white space characters (which will be
* consumed from the CharStream.) If no whitespace is found, it
- * will return 0.
+ * returns 0.
*
* @sa skip_whitespace_count
*/
@@ -172,7 +172,7 @@ public:
* skip_whitespace_count stores the first non-whitespace
* character it sees (character is not removed from the stream.)
*
- * @retval The number of whitespace characters consumed.
+ * @return The number of whitespace characters consumed.
*
* @sa skip_whitespace
*/
@@ -239,7 +239,7 @@ public:
* character from the input CharStream, otherwise, read_name
* will use this->get() to acquire the initial character.
*
- * @retval A pointer to the string in the obstack, 0 if it's not
+ * @return A pointer to the string in the obstack, 0 if it's not
* a valid name.
*/
ACEXML_Char *read_name (ACEXML_Char ch = 0);
@@ -289,7 +289,7 @@ public:
* Parse an entity reference, i.e., "&amp;". The first character
* encountered should be the character following '&'.
*
- * @retval A pointer to the resolved const ACEXML_String if success
+ * @return A pointer to the resolved const ACEXML_String if success
* (previously defined), 0 otherwise.
*/
const ACEXML_String *parse_reference (void);
@@ -298,7 +298,8 @@ public:
* Parse a CDATA section. The first character should always be the first
* '[' in CDATA definition.
*
- * @retval 0 on success, -1 otherwise.
+ * @retval 0 on success.
+ * @retval -1 if fail.
*/
int parse_cdata (ACEXML_Env &xmlenv);