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

#ifndef MYOBJECT_H
#define MYOBJECT_H

//! [0]
#include <QObject>

class MyObject : public QObject
{
public:
    MyObject();
    ~MyObject();
};
//! [0]

#endif