InformationPopUp.h 319 B

1234567891011121314151617
  1. #pragma once
  2. #include <QWidget>
  3. #include <QString>
  4. #include <QLabel>
  5. class InformationPopUp : public QWidget
  6. {
  7. Q_OBJECT
  8. public:
  9. InformationPopUp(QWidget *parent);
  10. ~InformationPopUp();
  11. void setInformation(QString information);
  12. QString getInformation() const;
  13. private:
  14. QLabel* informationLabel = new QLabel();
  15. };