dialogsetsegment.h 405 B

1234567891011121314151617181920212223
  1. #ifndef DIALOGSETSEGMENT_H
  2. #define DIALOGSETSEGMENT_H
  3. #include <QtGui>
  4. #include <QDialog>
  5. namespace Ui {
  6. class DialogSetSegment;
  7. }
  8. class DialogSetSegment : public QDialog
  9. {
  10. Q_OBJECT
  11. public:
  12. explicit DialogSetSegment(QWidget *parent = 0);
  13. ~DialogSetSegment();
  14. int getSegmentLenth();
  15. private:
  16. Ui::DialogSetSegment *ui;
  17. };
  18. #endif // DIALOGSETSEGMENT_H