mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-10 07:40:03 -06:00
18 lines
228 B
C++
18 lines
228 B
C++
#include "qItemD.hpp"
|
|
|
|
class QItemD_Local : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
QItemD_Local(){};
|
|
~QItemD_Local(){};
|
|
};
|
|
|
|
void QItemD::go()
|
|
{
|
|
QItemD_Local localObject;
|
|
}
|
|
|
|
// We need AUTOMOC processing
|
|
#include "qItemD.moc"
|