8PropertyPathId::PropertyPathId(
9 const QQSK::Property property,
10 const PropertyPathId_t groupStart,
11 QQSK::PropertyGroup subtype)
12 : m_property(property)
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52 const PropertyPathId_t subtypeIndex = PropertyPathId_t(subtype)
53 - PropertyPathId_t(QQSK::PropertyGroup::DelegateSubtype0);
54 const PropertyPathId_t subtypeStart = subtypeIndex * subtypeStorageSpaceSize;
55 m_groupStart = subtypeStart + groupStart;