// Copyright (C) 2023 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause #ifndef SPLINEWIDGET_H #define SPLINEWIDGET_H #include "contentwidget.h" class SplineWidget : public ContentWidget { Q_OBJECT public: explicit SplineWidget(QWidget *parent = nullptr); }; #endif