mirror of
https://github.com/reactos/CMake.git
synced 2025-01-11 22:17:44 +00:00
21 lines
280 B
C++
21 lines
280 B
C++
|
|
#ifndef PRIVATE_SLOT_H
|
|
#define PRIVATE_SLOT_H
|
|
|
|
#include <QObject>
|
|
|
|
class PrivateSlotPrivate;
|
|
|
|
class PrivateSlot : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
PrivateSlot(QObject *parent = 0);
|
|
|
|
private:
|
|
PrivateSlotPrivate * const d;
|
|
Q_PRIVATE_SLOT(d, void privateSlot())
|
|
};
|
|
|
|
#endif
|