~ubuntu-branches/ubuntu/precise/cmake/precise-updates

1.13.6 by Rohan Garg
Import upstream version 2.8.7
1
#include "private_slot.h"
2
3
class PrivateSlotPrivate
4
{
5
public:
6
7
  void privateSlot()
8
  {
9
10
  }
11
};
12
13
PrivateSlot::PrivateSlot(QObject *parent)
14
  : QObject(parent),
15
  d(new PrivateSlotPrivate)
16
{
17
18
}
19
20
#include "private_slot.moc"
21