You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#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
|