File indexing completed on 2025-01-26 05:13:02

0001 using namespace QtQuick;
0002 class Endcond : public QtQuick.Item {
0003 public:
0004 /**
0005  * The 'foo' property
0006  */
0007 Q_PROPERTY(int foo READ dummyGetter_foo_ignore)
0008 /// @cond TEST
0009 
0010 /// A test property, not visible by default
0011 Q_PROPERTY(int test READ dummyGetter_test_ignore)
0012 /// @endcond TEST
0013 private:
0014 /// @cond
0015 var visible;
0016 /// @endcond
0017 };