Sine Striker
2023-12-02 499afac952920595e6c3d4f94806427f894c7674
src/core/windowitemdelegate.h
@@ -1,6 +1,8 @@
#ifndef WINDOWITEMDELEGATE_H
#define WINDOWITEMDELEGATE_H
#include <memory>
#include <QtCore/QObject>
#include <QtGui/QWindow>
@@ -10,6 +12,7 @@
    class WindowItemDelegate {
    public:
        WindowItemDelegate() = default;
        virtual ~WindowItemDelegate() = default;
    public:
@@ -17,6 +20,9 @@
        virtual bool isEnabled(QObject *obj) const = 0;
        virtual bool isVisible(QObject *obj) const = 0;
    private:
        Q_DISABLE_COPY_MOVE(WindowItemDelegate)
    };
}