#include "sharedprivate.h"

SharedPrivate::SharedPrivate()
{
    qDebug("Private - Alloc");
}

SharedPrivate::~SharedPrivate()
{
    qDebug("Private - Delete");
}

SharedPrivate::SharedPrivate(const SharedPrivate &other)
    : QSharedData(other), name(other.name)
{
    qDebug("Private - Copy");
}
