diff options
author | nyamatongwe <unknown> | 2001-03-21 11:22:57 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-03-21 11:22:57 +0000 |
commit | cb058f017b74f6fcfa13d992723446e1bb8871f3 (patch) | |
tree | 612026fc0bb4a8c6795303cb285fd915d05d2264 /include/PropSet.h | |
parent | 3fa9218a647868664d6bf138084a71a1d14cf3ff (diff) | |
download | scintilla-mirror-cb058f017b74f6fcfa13d992723446e1bb8871f3.tar.gz |
Added enumeration interface from Laurent.
Diffstat (limited to 'include/PropSet.h')
-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); }; /** |