1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 06:49:55 +00:00
openmw-tes3mp/apps/opencs/model/prefs/category.hpp

25 lines
348 B
C++
Raw Normal View History

2015-12-06 11:06:28 +00:00
#ifndef CSV_PREFS_CATEGORY_H
#define CSM_PREFS_CATEGORY_H
#include <iostream>
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