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.
21 lines
280 B
21 lines
280 B
13 years ago
|
|
||
|
#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
|