18 lines
425 B
C++
18 lines
425 B
C++
#pragma once
|
|
|
|
#include "configobject.hpp"
|
|
|
|
namespace caelestia::config {
|
|
|
|
// ControlCenterConfig has no serialized properties (serializer returns {})
|
|
// All properties are in AdvancedConfig.controlCenter
|
|
class ControlCenterConfig : public ConfigObject {
|
|
Q_OBJECT
|
|
QML_ANONYMOUS
|
|
|
|
public:
|
|
explicit ControlCenterConfig(QObject* parent = nullptr)
|
|
: ConfigObject(parent) {}
|
|
};
|
|
|
|
} // namespace caelestia::config
|