aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <unknown>2007-07-24 08:14:06 +0000
committernyamatongwe <unknown>2007-07-24 08:14:06 +0000
commit45fddf64aa6d4cdfb403f21c7627a29d94f6b39f (patch)
treefea0d82e1b9d5540aa260d1de83c504a23821cfd /include
parent74873d9b7ed71b7636dbbadaf9788f0eabb3eaf0 (diff)
downloadscintilla-mirror-45fddf64aa6d4cdfb403f21c7627a29d94f6b39f.tar.gz
Changes to PropSet and PropSetFile make wild card suffixes work; evaluate
file patterns from the starting PropSet, and add some const corectness.
Diffstat (limited to 'include')
-rw-r--r--include/PropSet.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/include/PropSet.h b/include/PropSet.h
index 4a845c263..91bc7072b 100644
--- a/include/PropSet.h
+++ b/include/PropSet.h
@@ -42,7 +42,6 @@ protected:
}
return ret;
}
- static bool IncludesVar(const char *value, const char *key);
public:
PropSet *superPS;
@@ -52,12 +51,12 @@ public:
void Set(const char *keyVal);
void Unset(const char *key, int lenKey=-1);
void SetMultiple(const char *s);
- SString Get(const char *key);
- SString GetExpanded(const char *key);
- SString Expand(const char *withVars, int maxExpands=100);
- int GetInt(const char *key, int defaultValue=0);
+ SString Get(const char *key) const;
+ SString GetExpanded(const char *key) const;
+ SString Expand(const char *withVars, int maxExpands=100) const;
+ int GetInt(const char *key, int defaultValue=0) const;
void Clear();
- char *ToString(); // Caller must delete[] the return value
+ char *ToString() const; // Caller must delete[] the return value
private:
// copy-value semantics not implemented