diff options
Diffstat (limited to 'include')
-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); }; /** |