Advertisement
Guest User

somedialog.h

a guest
Sep 21st, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.38 KB | None | 0 0
  1. #ifndef SOMEDIALOG_H
  2. #define SOMEDIALOG_H
  3.  
  4. #include <QDialog>
  5.  
  6. namespace Ui {
  7.     class SomeDialog;
  8. }
  9.  
  10. class SomeDialog : public QDialog
  11. {
  12.     Q_OBJECT
  13.  
  14. public:
  15.     explicit SomeDialog(QWidget *parent = nullptr);
  16.  
  17.     bool hasEmptyFields() const;
  18.     int imageHeight() const;
  19.     int imageWidth() const;
  20.  
  21. private:
  22.     Ui::SomeDialog* ui;
  23. };
  24.  
  25. #endif // SOMEDIALOG_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement