blob: 3d53319db7726e9ee94166e66cc5f994a2796c52 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#ifndef BIRTHDAYPARTY_H
#define BIRTHDAYPARTY_H
#include <QObject>
#include <qml.h>
#include "person.h"
class BirthdayParty : public QObject
{
Q_OBJECT
Q_PROPERTY(Person *celebrant READ celebrant WRITE setCelebrant)
Q_PROPERTY(QmlList<Person *> *guests READ guests)
Q_CLASSINFO("DefaultProperty", "guests")
public:
BirthdayParty(QObject *parent = 0);
Person *celebrant() const;
void setCelebrant(Person *);
QmlList<Person *> *guests();
private:
Person *m_celebrant;
QmlConcreteList<Person *> m_guests;
};
QML_DECLARE_TYPE(BirthdayParty);
#endif // BIRTHDAYPARTY_H
|