aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlplugindump/data/dumper/CompositeWithEnum/Animal.qml
blob: 5bd7788a8c2179d97f8c43c0f2aaafbe40271c4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pragma Singleton
import QtQml 2.0

QtObject {
    property string name
    property string category
    property string sound
    property int size: Animal.SizeSmall

    enum SizeType {
        SizeSmall,
        SizeMedium,
        SizeLarge
    }
}