xtd 1.0.0
Loading...
Searching...
No Matches
const_control_ref_less.hpp
Go to the documentation of this file.
1
4#pragma once
6
8namespace xtd {
10 namespace forms {
23
29 auto operator()(const xtd::forms::const_control_ref& value1, const xtd::forms::const_control_ref& value2) const -> bool {
30 return &value1.get() < &value2.get();
31 }
32
33 };
34 }
35}
Contains xtd::forms::const_control_ref typedef.
xtd::ref< const xtd::forms::control > const_control_ref
Represents a const control reference.
Definition const_control_ref.hpp:25
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition texts.hpp:219
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8
Represents less comparator for const const_control_ref.
Definition const_control_ref_less.hpp:21
auto operator()(const xtd::forms::const_control_ref &value1, const xtd::forms::const_control_ref &value2) const -> bool
Compare two specified const_control_ref.
Definition const_control_ref_less.hpp:29