summaryrefslogtreecommitdiffstats
path: root/qtwinmigrate/examples/mfc/step5/childview.h
blob: b0b5bfc63a84835379f6f27f375fb646bd4981f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
// SPDX-License-Identifier: BSD-3-Clause

// childview.h : interface of the ChildView class
//
/////////////////////////////////////////////////////////////////////////////

#ifndef CHILDVIEW_H
#define CHILDVIEW_H

#include <QWidget>

class ChildView : public QWidget
{
public:
    ChildView(QWidget *parent = 0);

protected:
    void paintEvent(QPaintEvent *);
};

#endif