/* This file is part of KDDockWidgets. SPDX-FileCopyrightText: 2019 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Sérgio Martins SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only Contact KDAB at for commercial licensing options. */ #ifndef KD_RUBBERBAND_QTWIDGETS_H #define KD_RUBBERBAND_QTWIDGETS_H #pragma once #include "View.h" #include namespace KDDockWidgets { namespace QtWidgets { class DOCKS_EXPORT RubberBand : public View { Q_OBJECT public: explicit RubberBand(QWidget *parent = nullptr); ~RubberBand() override; }; } } #endif