#include "hellosignalslot.h"

HelloSignalSlot::HelloSignalSlot(QObject *parent) :
    QObject(parent)
{
}

void HelloSignalSlot::hello()
{
    qDebug("Hello signal!!!");
    emit helloSignal();
}
