Lines Matching refs:ConfigSection
31 class ConfigSection {
38 ConfigSection() = default;
39 ConfigSection(ConfigSection &&) = default;
40 ConfigSection &operator=(ConfigSection &&) = default;
68 ConfigSection(const ConfigSection &) = delete;
69 ConfigSection &operator=(const ConfigSection &) = delete;
81 using MapType = std::map<std::string, ConfigSection>;
94 const ConfigSection &GetSection(const std::string §ion_name) const {
100 const ConfigSection &operator[](const std::string §ion_name) const {
137 std::map<std::string, ConfigSection> map_;
183 ConfigSection *section_;