Horizon
manage_power_nets.hpp
1 #pragma once
2 #include <gtkmm.h>
3 namespace horizon {
4 
5 
6 class ManagePowerNetsDialog : public Gtk::Dialog {
7 public:
8  ManagePowerNetsDialog(Gtk::Window *parent, class Block &b);
9 
10 private:
11  Block &block;
12  Gtk::ListBox *listbox = nullptr;
13  void handle_add_power_net();
14 };
15 } // namespace horizon
A block is one level of hierarchy in the netlist.
Definition: block.hpp:26
Definition: manage_power_nets.hpp:6