]>
git.saurik.com Git - wxWidgets.git/blob - src/stc/scintilla/src/PropSetSimple.h
1674cfb9e6c170b69d15587c934f801c76704e66
1 // Scintilla source code edit control
2 /** @file PropSetSimple.h
3 ** A basic string to string map.
5 // Copyright 1998-2009 by Neil Hodgson <neilh@scintilla.org>
6 // The License.txt file describes the conditions under which this software may be distributed.
8 #ifndef PROPSETSIMPLE_H
9 #define PROPSETSIMPLE_H
15 class PropSetSimple
: public PropertyGet
{
17 void Set(const char *keyVal
);
20 virtual ~PropSetSimple();
21 void Set(const char *key
, const char *val
, int lenKey
=-1, int lenVal
=-1);
22 void SetMultiple(const char *);
23 const char *Get(const char *key
) const;
24 char *Expanded(const char *key
) const;
25 char *ToString() const;
26 int GetInt(const char *key
, int defaultValue
=0) const;