You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
362 B
19 lines
362 B
2 months ago
|
#pragma once
|
||
|
#include <selfdrive/ui/qt/onroad/onroad_home.h>
|
||
|
|
||
|
#include "recorder/widget.h"
|
||
|
|
||
|
|
||
|
class Application {
|
||
|
public:
|
||
|
Application(int argc, char* argv[]);
|
||
|
~Application();
|
||
|
int exec() const;
|
||
|
void close() const;
|
||
|
private:
|
||
|
QApplication *app;
|
||
|
QThread *recorderThread = nullptr;
|
||
|
Recorder *recorder = nullptr;
|
||
|
OnroadWindow *window;
|
||
|
};
|