2024-12-18 17:14:41 +08:00
|
|
|
#ifndef velocity_H
|
|
|
|
#define velocity_H
|
2024-12-17 18:53:41 +08:00
|
|
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
namespace Ui {
|
2024-12-18 17:14:41 +08:00
|
|
|
class Velocity;
|
2024-12-17 18:53:41 +08:00
|
|
|
}
|
|
|
|
|
2024-12-18 17:14:41 +08:00
|
|
|
class Velocity : public QWidget
|
2024-12-17 18:53:41 +08:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2024-12-18 17:14:41 +08:00
|
|
|
explicit Velocity(QWidget *parent = nullptr);
|
|
|
|
~Velocity();
|
2024-12-17 18:53:41 +08:00
|
|
|
|
|
|
|
private:
|
2024-12-18 17:14:41 +08:00
|
|
|
Ui::Velocity *ui;
|
2024-12-17 18:53:41 +08:00
|
|
|
};
|
|
|
|
|
2024-12-18 17:14:41 +08:00
|
|
|
#endif // velocity_H
|