1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-15 15:49:56 +00:00
openmw-tes3mp/components/settings/categories.hpp

16 lines
440 B
C++

#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