#pragma once #include #include #include class InformationPopUp : public QWidget { Q_OBJECT public: InformationPopUp(QWidget *parent); ~InformationPopUp(); void setInformation(QString information); QString getInformation() const; private: QLabel* informationLabel = new QLabel(); };