23 lines
202 B
C++
Raw Normal View History

2017-07-20 19:35:53 +02:00
#include "ObjB.hpp"
2018-01-26 17:06:56 +01:00
#include "ObjB_p.h"
2017-07-20 19:35:53 +02:00
2018-01-26 17:06:56 +01:00
ObjBPrivate::ObjBPrivate()
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
ObjBPrivate::~ObjBPrivate()
{
}
2017-07-20 19:35:53 +02:00
2018-01-26 17:06:56 +01:00
ObjB::ObjB()
: d(new ObjBPrivate)
2017-07-20 19:35:53 +02:00
{
}
2018-01-26 17:06:56 +01:00
ObjB::~ObjB()
2017-07-20 19:35:53 +02:00
{
2018-01-26 17:06:56 +01:00
delete d;
2017-07-20 19:35:53 +02:00
}
#include "moc_ObjB.cpp"