aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/PropSet.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-02-24 01:07:27 +0000
committernyamatongwe <unknown>2001-02-24 01:07:27 +0000
commit138a83285e148f933d9d8105d0b6a3f8d5c434bc (patch)
treef98810687b579e1a3b3db21227ec71ffc1b906d4 /include/PropSet.h
parentd21110c144c7ef998b76d3fde4954a811531c319 (diff)
downloadscintilla-mirror-138a83285e148f933d9d8105d0b6a3f8d5c434bc.tar.gz
Updated documentation comments from Philippe.
Diffstat (limited to 'include/PropSet.h')
-rw-r--r--include/PropSet.h14
1 files changed, 10 insertions, 4 deletions
diff --git a/include/PropSet.h b/include/PropSet.h
index 3b22725da..90e0a266f 100644
--- a/include/PropSet.h
+++ b/include/PropSet.h
@@ -1,5 +1,7 @@
-// SciTE - Scintilla based Text Editor
-// PropSet.h - a java style properties file module
+// Scintilla source code edit control
+/** @file PropSet.h
+ ** A Java style properties file module.
+ **/
// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
@@ -19,6 +21,8 @@ struct Property {
Property() : hash(0), key(0), val(0), next(0) {}
};
+/**
+ */
class PropSet {
private:
enum { hashRoots=31 };
@@ -38,14 +42,16 @@ public:
void Clear();
};
+/**
+ */
class WordList {
public:
- // Each word contains at least one character - a empty word acts as sentinal at the end.
+ // Each word contains at least one character - a empty word acts as sentinel at the end.
char **words;
char **wordsNoCase;
char *list;
int len;
- bool onlyLineEnds; // Delimited by any white space or only line ends
+ bool onlyLineEnds; ///< Delimited by any white space or only line ends
bool sorted;
int starts[256];
WordList(bool onlyLineEnds_ = false) :