Home
last modified time | relevance | path

Searched refs:StrongValueComparable (Results 1 – 2 of 2) sorted by relevance

/hal_espressif-3.6.0/examples/cxx/experimental/experimental_cpp_component/include/
Dgpio_cxx.hpp42 class GPIONumBase final : public StrongValueComparable<uint32_t> {
49 GPIONumBase(uint32_t pin) : StrongValueComparable<uint32_t>(pin) in GPIONumBase()
57 using StrongValueComparable<uint32_t>::operator==;
58 using StrongValueComparable<uint32_t>::operator!=;
89 class GPIOPullMode final : public StrongValueComparable<uint32_t> {
96 GPIOPullMode(uint32_t pull_mode) : StrongValueComparable<uint32_t>(pull_mode) { } in GPIOPullMode()
117 using StrongValueComparable<uint32_t>::operator==;
118 using StrongValueComparable<uint32_t>::operator!=;
133 class GPIOWakeupIntrType final: public StrongValueComparable<uint32_t> {
140 …GPIOWakeupIntrType(uint32_t interrupt_level) : StrongValueComparable<uint32_t>(interrupt_level) { } in GPIOWakeupIntrType()
[all …]
Dsystem_cxx.hpp38 class StrongValueComparable : public StrongValue<ValueT> { class
40 StrongValueComparable(ValueT value_arg) : StrongValue<ValueT>(value_arg) { } in StrongValueComparable() function in StrongValueComparable
44 bool operator==(const StrongValueComparable<ValueT> &other_gpio) const in operator ==()
49 bool operator!=(const StrongValueComparable<ValueT> &other_gpio) const in operator !=()