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.
21 lines
177 B
21 lines
177 B
8 years ago
|
#include "ObjA.hpp"
|
||
7 years ago
|
#include "ObjA_p.h"
|
||
8 years ago
|
|
||
7 years ago
|
ObjAPrivate::ObjAPrivate()
|
||
8 years ago
|
{
|
||
7 years ago
|
}
|
||
8 years ago
|
|
||
7 years ago
|
ObjAPrivate::~ObjAPrivate()
|
||
8 years ago
|
{
|
||
|
}
|
||
|
|
||
7 years ago
|
ObjA::ObjA()
|
||
|
: d(new ObjAPrivate)
|
||
8 years ago
|
{
|
||
|
}
|
||
|
|
||
7 years ago
|
ObjA::~ObjA()
|
||
|
{
|
||
|
delete d;
|
||
|
}
|