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

« back to all changes in this revision

Viewing changes to Tests/QtAutomoc/private_slot.h

  • Committer: Package Import Robot
  • Author(s): Rohan Garg
  • Date: 2012-01-17 23:04:07 UTC
  • mfrom: (1.13.6)
  • Revision ID: package-import@ubuntu.com-20120117230407-14cdb6g0mxmh29bl
Tags: 2.8.7-0ubuntu1
* New upstream release
  - Add increase_ctest_test_timeout.diff to increase timeout period
    of a test

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef PRIVATE_SLOT_H
 
3
#define PRIVATE_SLOT_H
 
4
 
 
5
#include <QObject>
 
6
 
 
7
class PrivateSlotPrivate;
 
8
 
 
9
class PrivateSlot : public QObject
 
10
{
 
11
  Q_OBJECT
 
12
public:
 
13
  PrivateSlot(QObject *parent = 0);
 
14
 
 
15
private:
 
16
  PrivateSlotPrivate * const d;
 
17
  Q_PRIVATE_SLOT(d, void privateSlot())
 
18
};
 
19
 
 
20
#endif