1 #ifndef COMPONENTS_SETTINGS_CATEGORIES_H
2 #define COMPONENTS_SETTINGS_CATEGORIES_H
3 
4 #include <map>
5 #include <set>
6 #include <string>
7 #include <utility>
8 
9 namespace Settings
10 {
11     using CategorySetting = std::pair<std::string, std::string>;
12     using CategorySettingVector = std::set<std::pair<std::string, std::string>>;
13     using CategorySettingValueMap = std::map<CategorySetting, std::string>;
14 }
15 
16 #endif // COMPONENTS_SETTINGS_CATEGORIES_H
17