23 lines
426 B
C++
23 lines
426 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
#include <memory>
|
|
|
|
namespace Ui { class SpeedVerticalDialog; }
|
|
struct SpeedVerticalAction;
|
|
|
|
class SpeedVerticalDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SpeedVerticalDialog(SpeedVerticalAction &action, QWidget *parent = nullptr);
|
|
~SpeedVerticalDialog() override;
|
|
|
|
private:
|
|
const std::unique_ptr<Ui::SpeedVerticalDialog> m_ui;
|
|
|
|
SpeedVerticalAction &m_action;
|
|
};
|