#ifndef DISPLAY_SCHEMA_H #define DISPLAY_SCHEMA_H #include #include #include namespace display { class BusConnection; class Schema: public QGraphicsView { public: Schema(); std::vector connections; void setSchema(domain::Schema* schema); void updateConnections(); private: QGraphicsScene scene; domain::Schema* schema; }; } // namespace display #endif // DISPLAY_SCHEMA_H