#ifndef DISPLAY_LIBRARY_H #define DISPLAY_LIBRARY_H #include #include #include #include "library_list.h" namespace display { class Library : public QWidget { public: Library(); void setLibrary(std::optional library); private: std::optional library; LibraryList *componentList; LibraryList *busList; }; } // namespace display #endif // DISPLAY_LIBRARY_H