mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-06 14:16:39 +08:00
16 lines
277 B
C++
16 lines
277 B
C++
#pragma once
|
|
|
|
#include "frogpilot/ui/qt/offroad/frogpilot_settings.h"
|
|
|
|
class FrogPilotDataPanel : public FrogPilotListWidget {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit FrogPilotDataPanel(FrogPilotSettingsWindow *parent);
|
|
|
|
private:
|
|
FrogPilotSettingsWindow *parent;
|
|
|
|
Params params;
|
|
};
|