Nui
select.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 
5 namespace Nui::Components
6 {
7  template <typename T>
8  struct SelectOptions
9  {
10  std::string label;
11  T value;
12  };
13 }
Definition: dialog.hpp:11
Definition: select.hpp:9
T value
Definition: select.hpp:11
std::string label
Definition: select.hpp:10