Advertisement
Guest User

Untitled

a guest
Mar 10th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #ifndef INTFIELD_H
  2. #define INTFIELD_H
  3. #include "ui_intfield.h"
  4. #include "../field.h"
  5. class IntField : public Field, private Ui::IntField
  6. {
  7.     Q_OBJECT
  8. public:
  9.     explicit IntField(const QString &title, int value,
  10.                       QWidget *parent = 0, int min = -9999999, int max = 9999999);
  11.     int getValue() const;
  12.     void setValue(int v);
  13. };
  14. #endif // INTFIELD_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement