summaryrefslogtreecommitdiffstats
path: root/examples/remoteobjects/timemodel.rep
blob: c07ee2c39758c9a34ace0b72a7b3472d83400162 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <QtCore>

POD PresetInfo(int presetNumber, float frequency, QString stationName)
POD PresetData(QList<QString> bla)
class MinuteTimer
{
    PROP(int hour=1);
    PROP(int minute=51);
    SIGNAL(timeChanged());
    SIGNAL(timeChanged2(QTime t));
    SIGNAL(sendCustom(PresetInfo info));
    SIGNAL(foo(QMap<QString, QString> foo));
    SLOT(void SetTimeZone(const int &));
};