1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-25 15:35:23 +00:00
OpenMW/apps/opencs/model/prefs/category.hpp
2015-12-08 09:56:42 +01:00

25 lines
348 B
C++

#ifndef CSV_PREFS_CATEGORY_H
#define CSM_PREFS_CATEGORY_H
#include <iostream>
namespace CSMPrefs
{
class State;
class Category
{
State *mParent;
std::string mKey;
public:
Category (State *parent, const std::string& key);
const std::string& getKey() const;
};
}
#endif