summaryrefslogtreecommitdiffstats
path: root/examples/remoteobjects/cbor_python/qt_source/Simple.rep
blob: 1757ae6adfa9e73a46a57186871e83ec340330a7 (plain)
1
2
3
4
5
6
7
8
9
#include <QtCore>

class Simple
{
    PROP(int i = 2);
    PROP(float f = -1. READWRITE);
    SIGNAL(random(int i));
    SLOT(void reset());
};