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

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

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