Migration of QtMvvm from github

11 lines
163 B

7 years ago
#include "echoservice.h"
EchoService::EchoService(QObject *parent) :
QObject(parent)
{}
void EchoService::ping(const QString &message)
{
emit pong(message);
}