1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-29 05:06:42 +00:00
openmw-tes3mp/apps/opencs/model/prefs/category.cpp
2015-12-06 12:06:28 +01:00

16 lines
322 B
C++

#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;
}