2011-11-23 01:26:42 +04:00
|
|
|
|
|
|
|
#include "private_slot.h"
|
|
|
|
|
|
|
|
class PrivateSlotPrivate
|
|
|
|
{
|
|
|
|
public:
|
2016-05-16 17:34:04 +03:00
|
|
|
void privateSlot() {}
|
2011-11-23 01:26:42 +04:00
|
|
|
};
|
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
PrivateSlot::PrivateSlot(QObject* parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, d(new PrivateSlotPrivate)
|
2011-11-23 01:26:42 +04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "private_slot.moc"
|