You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
440 B
C++
17 lines
440 B
C++
5 years ago
|
#ifndef COMPONENTS_SETTINGS_CATEGORIES_H
|
||
|
#define COMPONENTS_SETTINGS_CATEGORIES_H
|
||
|
|
||
|
#include <map>
|
||
|
#include <set>
|
||
|
#include <string>
|
||
|
#include <utility>
|
||
|
|
||
|
namespace Settings
|
||
|
{
|
||
|
using CategorySetting = std::pair<std::string, std::string>;
|
||
|
using CategorySettingVector = std::set<std::pair<std::string, std::string>>;
|
||
|
using CategorySettingValueMap = std::map<CategorySetting, std::string>;
|
||
|
}
|
||
|
|
||
|
#endif // COMPONENTS_SETTINGS_CATEGORIES_H
|