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

« back to all changes in this revision

Viewing changes to Tests/QtAutomoc/private_slot.cpp

  • 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
#include "private_slot.h"
 
3
 
 
4
class PrivateSlotPrivate
 
5
{
 
6
public:
 
7
 
 
8
  void privateSlot()
 
9
  {
 
10
 
 
11
  }
 
12
};
 
13
 
 
14
PrivateSlot::PrivateSlot(QObject *parent)
 
15
  : QObject(parent),
 
16
  d(new PrivateSlotPrivate)
 
17
{
 
18
 
 
19
}
 
20
 
 
21
#include "private_slot.moc"