#include <Registry.h>
Definition at line 30 of file Registry.h.
◆ Type
The default Unspecified hint is just like End, except that in case the item is delegated to (by an IndirectItem, ComputedItem, or anonymous group), the delegating item's hint will be used instead
Enumerator |
---|
Before | |
After | |
Begin | |
End | |
Unspecified | |
Definition at line 37 of file Registry.h.
37 : int {
enum Registry::OrderingHint::Type Unspecified
◆ OrderingHint() [1/2]
Registry::OrderingHint::OrderingHint |
( |
| ) |
|
|
inline |
◆ OrderingHint() [2/2]
Registry::OrderingHint::OrderingHint |
( |
Type |
type_, |
|
|
const wxString & |
name_ = {} |
|
) |
| |
|
inline |
Definition at line 48 of file Registry.h.
48 {} )
49 : type(type_),
name(name_) {}
◆ operator<()
bool Registry::OrderingHint::operator< |
( |
const OrderingHint & |
other | ) |
const |
|
inline |
Definition at line 54 of file Registry.h.
55 {
56
57 return std::make_pair( type,
name ) <
58 std::make_pair( other.type, other.name );
59 }
References name.
◆ operator==()
bool Registry::OrderingHint::operator== |
( |
const OrderingHint & |
other | ) |
const |
|
inline |
Definition at line 51 of file Registry.h.
52 {
return name == other.name && type == other.type; }
References name.
◆ name
◆ Unspecified
The documentation for this struct was generated from the following file: