forked from teamnwah/openmw-tes3coop
24 lines
346 B
C++
24 lines
346 B
C++
#ifndef CSV_PREFS_CATEGORY_H
|
|
#define CSM_PREFS_CATEGORY_H
|
|
|
|
#include <string>
|
|
|
|
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
|