aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/cppextensions/referenceexamples/attached/birthdayparty.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/cppextensions/referenceexamples/attached/birthdayparty.h')
-rw-r--r--examples/declarative/cppextensions/referenceexamples/attached/birthdayparty.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/examples/declarative/cppextensions/referenceexamples/attached/birthdayparty.h b/examples/declarative/cppextensions/referenceexamples/attached/birthdayparty.h
index 02e9593b8b..c789c0bd51 100644
--- a/examples/declarative/cppextensions/referenceexamples/attached/birthdayparty.h
+++ b/examples/declarative/cppextensions/referenceexamples/attached/birthdayparty.h
@@ -75,12 +75,15 @@ public:
int guestCount() const;
Person *guest(int) const;
+ //! [static attached]
static BirthdayPartyAttached *qmlAttachedProperties(QObject *);
+ //! [static attached]
private:
Person *m_host;
QList<Person *> m_guests;
};
+//! [declare attached]
QML_DECLARE_TYPEINFO(BirthdayParty, QML_HAS_ATTACHED_PROPERTIES)
-
+//! [declare attached]
#endif // BIRTHDAYPARTY_H