Horizon
schematic_properties.hpp
1 #pragma once
2 #include <gtkmm.h>
3 #include <array>
4 #include <set>
5 namespace horizon {
6 
7 
8 class SchematicPropertiesDialog : public Gtk::Dialog {
9 public:
10  SchematicPropertiesDialog(Gtk::Window *parent, class Schematic &c, class IPool &pool);
11 
12 
13 private:
14  class Schematic &sch;
15 
16 
17  void ok_clicked();
18 };
19 } // namespace horizon