summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/qtcast/qtcast.h
blob: faee1cdc09f791dde2516facfb24f2b36d419e2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#ifndef QTCAST_H
#define QTCAST_H

#include <QWidget>

class MyWidget : public QWidget
{
    Q_OBJECT

public:
    MyWidget();
};

#endif