mirror of https://github.com/qt/qtbase.git
22 lines
337 B
C++
22 lines
337 B
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
|
|
|
|
#ifndef GRIDWIDGET_H
|
|
#define GRIDWIDGET_H
|
|
|
|
#include <QWidget>
|
|
|
|
class GridWidget : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit GridWidget(QWidget *parent = nullptr);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
};
|
|
|
|
#endif // GRIDWIDGET_H
|