mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-20 21:53:52 +00:00
26 lines
498 B
C++
26 lines
498 B
C++
#ifndef OPENMW_APPS_OPENCS_MODEL_PREFS_SUBCATEGORY_H
|
|
#define OPENMW_APPS_OPENCS_MODEL_PREFS_SUBCATEGORY_H
|
|
|
|
#include "setting.hpp"
|
|
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
namespace CSMPrefs
|
|
{
|
|
class Category;
|
|
|
|
class Subcategory final : public Setting
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Subcategory(Category* parent, QMutex* mutex, const QString& label);
|
|
|
|
SettingWidgets makeWidgets(QWidget* parent) override;
|
|
|
|
void updateWidget() override {}
|
|
};
|
|
}
|
|
|
|
#endif
|