summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/MocInclude/ObjA.cpp
blob: 6f6b90ef1e1bf93d463e79e5974313bb9dab78d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "ObjA.hpp"
#include "ObjA_p.h"

ObjAPrivate::ObjAPrivate()
{
}

ObjAPrivate::~ObjAPrivate()
{
}

ObjA::ObjA()
  : d(new ObjAPrivate)
{
}

ObjA::~ObjA()
{
  delete d;
}