forked from mirror/openmw-tes3mp
27 lines
452 B
C++
27 lines
452 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;
|
||
|
std::string mName;
|
||
|
|
||
|
public:
|
||
|
|
||
|
Category (State *parent, const std::string& key, const std::string& name);
|
||
|
|
||
|
const std::string& getKey() const;
|
||
|
|
||
|
const std::string& getName() const;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|