blob: 88c755e74b774df5858d5bbb9fad5202d2e82692 (
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()
: TQObject()
{
std::cout << "MyObject::MyObject()\n";
}
MyObject::~MyObject()
{
qDebug("MyObject::~MyObject()");
}
|