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