blob: 4f1d1d871ac5b6ed25791ee814a65db3e1c134c7 (
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()
: QObject()
{
std::cout << "MyObject::MyObject()\n";
}
MyObject::~MyObject()
{
qDebug("MyObject::~MyObject()");
}
|