You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
202 B
23 lines
202 B
8 years ago
|
#include "ObjB.hpp"
|
||
7 years ago
|
#include "ObjB_p.h"
|
||
8 years ago
|
|
||
7 years ago
|
ObjBPrivate::ObjBPrivate()
|
||
8 years ago
|
{
|
||
7 years ago
|
}
|
||
8 years ago
|
|
||
7 years ago
|
ObjBPrivate::~ObjBPrivate()
|
||
|
{
|
||
|
}
|
||
8 years ago
|
|
||
7 years ago
|
ObjB::ObjB()
|
||
|
: d(new ObjBPrivate)
|
||
8 years ago
|
{
|
||
|
}
|
||
|
|
||
7 years ago
|
ObjB::~ObjB()
|
||
8 years ago
|
{
|
||
7 years ago
|
delete d;
|
||
8 years ago
|
}
|
||
|
|
||
|
#include "moc_ObjB.cpp"
|