• Home
  • Raw
  • Download

Lines Matching full:setting

59 class Setting; // fwd decl
67 SettingException(const Setting &setting);
68 SettingException(const Setting &setting, int idx);
69 SettingException(const Setting &setting, const char *name);
90 SettingTypeException(const Setting &setting);
91 SettingTypeException(const Setting &setting, int idx);
92 SettingTypeException(const Setting &setting, const char *name);
102 SettingNotFoundException(const Setting &setting, int idx);
103 SettingNotFoundException(const Setting &setting, const char *name);
112 SettingNameException(const Setting &setting, const char *name);
152 class LIBCONFIGXX_API Setting class
184 virtual ~Setting();
206 Setting & operator=(bool value);
207 Setting & operator=(int value);
208 Setting & operator=(long value);
209 Setting & operator=(const long long &value);
210 Setting & operator=(const double &value);
211 Setting & operator=(float value);
212 Setting & operator=(const char *value);
213 Setting & operator=(const std::string &value);
215 Setting & lookup(const char *path) const;
216 inline Setting & lookup(const std::string &path) const
219 Setting & operator[](const char *name) const;
221 inline Setting & operator[](const std::string &name) const
224 Setting & operator[](int index) const;
271 Setting & add(const char *name, Type type);
273 inline Setting & add(const std::string &name, Type type)
276 Setting & add(Type type);
288 const Setting & getParent() const;
289 Setting & getParent();
331 Setting(config_setting_t *setting);
334 static Setting & wrapSetting(config_setting_t *setting);
336 Setting(const Setting& other); // not supported
337 Setting& operator=(const Setting& other); // not supported
345 SettingIterator(Setting &setting, bool endIterator = false);
359 inline Setting & operator*()
362 inline Setting * operator->()
365 inline const Setting & operator*() const
367 inline const Setting * operator->() const
388 Setting *_setting;
400 SettingConstIterator(const Setting &setting, bool endIterator = false);
412 inline Setting const & operator*()
414 inline Setting const * operator->()
417 inline const Setting& operator*() const
419 inline const Setting * operator->() const
440 const Setting *_setting;
481 void setDefaultFormat(Setting::Format format);
482 inline Setting::Format getDefaultFormat() const
512 Setting & lookup(const char *path) const;
513 inline Setting & lookup(const std::string &path) const
558 Setting & getRoot() const;
566 Setting::Format _defaultFormat;