mirror of
https://github.com/benhoyt/inih.git
synced 2025-01-28 22:52:54 +08:00
INIReader: change variable visibility from private to protected (#165)
This allows for full feature inheritance.
This commit is contained in:
parent
5cc5e2c246
commit
ec8539d519
@ -96,7 +96,7 @@ public:
|
||||
// Return true if a value exists with the given section and field names.
|
||||
INI_API bool HasValue(const std::string& section, const std::string& name) const;
|
||||
|
||||
private:
|
||||
protected:
|
||||
int _error;
|
||||
std::map<std::string, std::string> _values;
|
||||
static std::string MakeKey(const std::string& section, const std::string& name);
|
||||
|
Loading…
x
Reference in New Issue
Block a user