mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 15:18:26 -05:00
14 lines
135 B
C++
14 lines
135 B
C++
#ifndef QITEMD_HPP
|
|
#define QITEMD_HPP
|
|
|
|
#include <QObject>
|
|
|
|
class QItemD : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_SLOT
|
|
void go();
|
|
};
|
|
|
|
#endif
|