import QtQuick 2.0

QtObject {
    enum MyEnum {
        EnumValue1,
        EnumValue2,
        EnumValue3 = 17.5
    }
}
