Advertisement
vailphoria

place.h

Apr 15th, 2021
1,263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1. #ifndef PLACE_H
  2. #define PLACE_H
  3.  
  4. #include <QLabel>
  5.  
  6. class Place : public QLabel
  7. {
  8.     Q_OBJECT
  9. public:
  10.     explicit Place(QWidget *parent = nullptr);
  11.     bool isEmpty = true;
  12.  
  13. signals:
  14.  
  15. };
  16.  
  17. #endif // PLACE_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement