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

0001 using namespace QtQuick;
0002 using namespace QtQuick::Controls;
0003 /*
0004  * Header bla
0005  */
0006 /**
0007  * Parent item.
0008  */
0009 class Nesting : public QtQuick.Item {
0010 /**
0011  * A child with an ID.
0012  */
0013 Item childItem;
0014 /**
0015  * Another child with an ID.
0016  */
0017 Item childItem2;
0018 ShowChildComponent customComponentChildItem;
0019 /**
0020  * A grandchild with an ID.
0021  */
0022 ShowChildComponent showCustomComponentChildItem;
0023 /**
0024  * A comment for aSplitView
0025  */
0026 SplitView aSplitView;
0027 /**
0028  * A comment for aRectangle.
0029  */
0030 Rectangle aRectangle;
0031 };