30 lines
409 B
C
30 lines
409 B
C
|
#ifndef KZSTARGET_H
|
||
|
#define KZSTARGET_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include "widget.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class kzsTarget;
|
||
|
}
|
||
|
|
||
|
class kzsTarget : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit kzsTarget(QWidget *parent = 0);
|
||
|
~kzsTarget();
|
||
|
|
||
|
private slots:
|
||
|
void msTick();
|
||
|
void on_pushButton_2_clicked();
|
||
|
|
||
|
void on_pushButton_clicked();
|
||
|
|
||
|
private:
|
||
|
Ui::kzsTarget *ui;
|
||
|
};
|
||
|
|
||
|
#endif // KZSTARGET_H
|