Horizon
project_properties.hpp
1 #pragma once
2 #include <gtkmm.h>
3 #include <array>
4 #include <set>
5 #include "util/uuid.hpp"
6 namespace horizon {
7 
8 
9 class ProjectPropertiesDialog : public Gtk::Dialog {
10 public:
11  ProjectPropertiesDialog(Gtk::Window *parent, class Block &b);
12 };
13 } // namespace horizon
A block is one level of hierarchy in the netlist.
Definition: block.hpp:29
Definition: project_properties.hpp:9