summaryrefslogtreecommitdiffstats
path: root/qmake/examples/precompile/myobject.cpp
blob: da24e625de4c3c8f80423b2725e421810c31c2be (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()
{
    tqDebug("MyObject::~MyObject()");
}