src/main.h

changeset 35
98906a94732f
parent 26
3a9e761e4faa
child 46
98645c8e7704
equal deleted inserted replaced
34:1de2b8d64e9f 35:98906a94732f
29 { 29 {
30 // List of setting groups 30 // List of setting groups
31 constexpr char mainwindow[] = "mainwindow"; 31 constexpr char mainwindow[] = "mainwindow";
32 } 32 }
33 33
34 namespace linetypes 34 namespace ldraw
35 { 35 {
36 // Uniquely identifies a model body object 36 // Uniquely identifies a model body object
37 struct Id 37 struct Id
38 { 38 {
39 unsigned int value; 39 unsigned int value;
40 constexpr bool operator<(linetypes::Id other) const 40 constexpr bool operator<(ldraw::Id other) const
41 { 41 {
42 return this->value < other.value; 42 return this->value < other.value;
43 } 43 }
44 }; 44 };
45 } 45 }

mercurial