mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 22:10:32 +00:00
22 lines
223 B
C++
22 lines
223 B
C++
|
|
#include "private_slot.h"
|
|
|
|
class PrivateSlotPrivate
|
|
{
|
|
public:
|
|
|
|
void privateSlot()
|
|
{
|
|
|
|
}
|
|
};
|
|
|
|
PrivateSlot::PrivateSlot(QObject *parent)
|
|
: QObject(parent),
|
|
d(new PrivateSlotPrivate)
|
|
{
|
|
|
|
}
|
|
|
|
#include "private_slot.moc"
|