blob: 687116dfc1dc0018ed1e9a27c4a8fad6cc259335 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <iostream>
#include <ntqobject.h>
#include "myobject.h"
MyObject::MyObject()
: TQObject()
{
std::cout << "MyObject::MyObject()\n";
}
MyObject::~MyObject()
{
qDebug("MyObject::~MyObject()");
}
|