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

//! [0]
#include <iostream>
#include <QDebug>
#include <QObject>
#include "myobject.h"

MyObject::MyObject()
    : QObject()
{
    std::cout << "MyObject::MyObject()\n";
}
//! [0]

MyObject::~MyObject()
{
    qDebug() << "MyObject::~MyObject()";
}