1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-11 00:39:59 +00:00
OpenMW/apps/opencs/model/prefs/category.hpp

25 lines
346 B
C++
Raw Normal View History

2015-12-06 11:06:28 +00:00
#ifndef CSV_PREFS_CATEGORY_H
#define CSM_PREFS_CATEGORY_H
2015-12-08 11:09:53 +00:00
#include <string>
2015-12-06 11:06:28 +00:00
namespace CSMPrefs
{
class State;
class Category
{
State *mParent;
std::string mKey;
public:
2015-12-08 08:56:42 +00:00
Category (State *parent, const std::string& key);
2015-12-06 11:06:28 +00:00
const std::string& getKey() const;
};
}
#endif