File indexing completed on 2024-05-12 04:46:54

0001 #include "abstractplatform.h"
0002 
0003 AbstractPlatform::AbstractPlatform(QObject *parent)
0004     : QObject(parent)
0005 {
0006 }
0007 
0008 void AbstractPlatform::notify(const QString &title, const QString &message, const QString &icon, const QString &imageUrl)
0009 {
0010     Q_UNUSED(title)
0011     Q_UNUSED(message)
0012     Q_UNUSED(icon)
0013     Q_UNUSED(imageUrl)
0014 }