File indexing completed on 2025-01-12 05:06:54
0001 using namespace QtQuick; 0002 /// @brief %Comments test case 0003 class Comments : public QtQuick.Item { 0004 public: 0005 /// @brief Property foo 0006 Q_PROPERTY(int foo READ dummyGetter_foo_ignore) 0007 /// @name My group 0008 /// @{ 0009 0010 /// @brief Property myFoo, part of my group 0011 Q_PROPERTY(int myFoo READ dummyGetter_myFoo_ignore) 0012 /// @brief Property myBar, part of my group 0013 Q_PROPERTY(int myBar READ dummyGetter_myBar_ignore) 0014 /// @} 0015 private: 0016 /// @brief Assignment to parent class property 0017 var visible; 0018 /** @name Their group 0019 * @{ 0020 */ 0021 public: 0022 /** @brief Property theirFoo, part of their group */ 0023 Q_PROPERTY(int theirFoo READ dummyGetter_theirFoo_ignore) 0024 /** @brief Property theirBar, part of their group */ 0025 Q_PROPERTY(int theirBar READ dummyGetter_theirBar_ignore) 0026 /** @} */ 0027 /// @brief Property baz 0028 Q_PROPERTY(int baz READ dummyGetter_baz_ignore) 0029 };