diff options
author | nyamatongwe <devnull@localhost> | 2001-03-21 11:22:57 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-03-21 11:22:57 +0000 |
commit | c2888f18f47f8078f36c74cf11fbbcb832256c87 (patch) | |
tree | 612026fc0bb4a8c6795303cb285fd915d05d2264 | |
parent | 67f3aae23d580fc6d7d2f8d95663086ed40e611d (diff) | |
download | scintilla-mirror-c2888f18f47f8078f36c74cf11fbbcb832256c87.tar.gz |
Added enumeration interface from Laurent.
-rw-r--r-- | include/PropSet.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/PropSet.h b/include/PropSet.h index 4cad0eecf..61a4f4252 100644 --- a/include/PropSet.h +++ b/include/PropSet.h @@ -27,6 +27,8 @@ class PropSet { private: enum { hashRoots=31 }; Property *props[hashRoots]; + Property *enumnext; + int enumhash; public: PropSet *superPS; PropSet(); @@ -40,6 +42,8 @@ public: SString GetWild(const char *keybase, const char *filename); SString GetNewExpand(const char *keybase, const char *filename); void Clear(); + bool GetFirst(char **key, char **val); + bool GetNext(char **key, char **val); }; /** |