File indexing completed on 2025-01-26 05:13:02
0001 class EnumWithInitializer : public QtQuick.Item { 0002 public: 0003 enum class MyEnum { 0004 /// The first 0005 First = 1, 0006 InBetween, 0007 Last = MyConstant ///< The last 0008 }; 0009 };
File indexing completed on 2025-01-26 05:13:02
0001 class EnumWithInitializer : public QtQuick.Item { 0002 public: 0003 enum class MyEnum { 0004 /// The first 0005 First = 1, 0006 InBetween, 0007 Last = MyConstant ///< The last 0008 }; 0009 };