Migration of QtMvvm from github
 
 
 
 
 

10 lines
163 B

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