xtd 0.2.0
tab_page_ref_less.h
Go to the documentation of this file.
1 #pragma once
5 #include "tab_page_ref.h"
6 #include <xtd/object>
7 
9 namespace xtd {
11  namespace forms {
20  struct tab_page_ref_less : public object {
22 
28  bool operator()(const tab_page_ref& value1, const tab_page_ref& value2) const {
29  return &value1.get() < &value2.get();
30  }
32  };
33  }
34 }
Contains xtd::forms::tab_page_ref typedef.
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
std::reference_wrapper< tab_page > tab_page_ref
Represents a tab_page reference.
Definition: tab_page_ref.h:23
Supports all classes in the xtd class hierarchy and provides low-level services to derived classes...
Definition: object.h:32
Represents less comparator for tab_page_ref.
Definition: tab_page_ref_less.h:20
bool operator()(const tab_page_ref &value1, const tab_page_ref &value2) const
Compare two specified tab_page_ref.
Definition: tab_page_ref_less.h:28
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13