blob: 14853508ac02fdd3f7da20d382a1986a1912c3d0 (
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()
{
tqDebug("MyObject::~MyObject()");
}
|