mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-14 18:51:42 -06:00
18 lines
228 B
C++
18 lines
228 B
C++
#include "qItemC.hpp"
|
|
|
|
class QItemC_Local : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
QItemC_Local(){};
|
|
~QItemC_Local(){};
|
|
};
|
|
|
|
void QItemC::go()
|
|
{
|
|
QItemC_Local localObject;
|
|
}
|
|
|
|
// We need AUTOMOC processing
|
|
#include "qItemC.moc"
|