1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-22 00:23:53 +00:00
openmw/apps/opencs/model/prefs/category.cpp

12 lines
205 B
C++
Raw Normal View History

2015-12-06 11:06:28 +00:00
#include "category.hpp"
2015-12-08 08:56:42 +00:00
CSMPrefs::Category::Category (State *parent, const std::string& key)
: mParent (parent), mKey (key)
2015-12-06 11:06:28 +00:00
{}
const std::string& CSMPrefs::Category::getKey() const
{
return mKey;
}