1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-17 19:10:24 +00:00
OpenMW/apps/opencs/model/prefs/category.cpp

17 lines
322 B
C++
Raw Normal View History

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