21 lines
177 B
C++
Raw Normal View History

2017-07-20 19:35:53 +02:00
#include "ObjA.hpp"
2018-01-26 17:06:56 +01:00
#include "ObjA_p.h"
2017-07-20 19:35:53 +02:00
2018-01-26 17:06:56 +01:00
ObjAPrivate::ObjAPrivate()
2017-07-20 19:35:53 +02:00
{
2018-01-26 17:06:56 +01:00
}
2017-07-20 19:35:53 +02:00
2018-01-26 17:06:56 +01:00
ObjAPrivate::~ObjAPrivate()
2017-07-20 19:35:53 +02:00
{
}
2018-01-26 17:06:56 +01:00
ObjA::ObjA()
: d(new ObjAPrivate)
2017-07-20 19:35:53 +02:00
{
}
2018-01-26 17:06:56 +01:00
ObjA::~ObjA()
{
delete d;
}