Horizon
multi_pad_selector.hpp
1 #pragma once
2 #include "multi_item_selector.hpp"
3 
4 namespace horizon {
6 public:
8  void set_package(const class Package &pkg);
9  const std::map<UUID, std::string> &get_pads() const
10  {
11  return pads;
12  }
13 
14  void update() override;
15 
16 protected:
17  std::string get_column_heading() const override;
18 
19 private:
20  std::map<UUID, std::string> pads;
21 };
22 } // namespace horizon
Definition: multi_item_selector.hpp:8
Definition: multi_pad_selector.hpp:5
Definition: package.hpp:29