#ifndef COMPONENTS_SETTINGS_CATEGORIES_H #define COMPONENTS_SETTINGS_CATEGORIES_H #include #include #include #include #include namespace Settings { struct Less { using is_transparent = void; bool operator()(const std::pair& l, const std::pair& r) const { return l < r; } }; using CategorySetting = std::pair; using CategorySettingVector = std::set; using CategorySettingValueMap = std::map; } #endif // COMPONENTS_SETTINGS_CATEGORIES_H