#include <myobject.h>
Inheritance diagram for MyObject:


Definition at line 29 of file myobject.h.
Public Member Functions | |
| MyObject () | |
| ~MyObject () | |
| MyObject::MyObject | ( | ) |
Definition at line 29 of file myobject.cpp.
00030 : QObject() 00031 { 00032 std::cout << "MyObject::MyObject()\n"; 00033 }
| MyObject::~MyObject | ( | ) |
Definition at line 35 of file myobject.cpp.
References qDebug().
00036 { 00037 qDebug() << "MyObject::~MyObject()"; 00038 }
Here is the call graph for this function:

1.5.1