summaryrefslogtreecommitdiffstats
path: root/qmake/examples/precompile/myobject.cpp
blob: 96d0f13ecdfdea4c3dcb528d7b2756a0e2b28939 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <iostream>
#include <qobject.h>
#include "myobject.h"

MyObject::MyObject()
    : QObject()
{
    std::cout << "MyObject::MyObject()\n";
}

MyObject::~MyObject()
{
    tqDebug("MyObject::~MyObject()");
}