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

0001 class Enum : public QtQuick.Item {
0002 public:
0003 /// Enum type
0004 /// in multiple lines
0005 enum class Direction {
0006 Up, ///< Go up
0007 /// Go down
0008 Down
0009 };
0010 enum class IsThisOk { ///< Inline comment
0011 /** Comma after last entry */
0012 CommaAfterLast
0013 };
0014 };