mirror of
https://github.com/azaion/autopilot.git
synced 2026-04-22 11:56:33 +00:00
13 lines
133 B
C++
13 lines
133 B
C++
#include <QObject>
|
|
|
|
#pragma once
|
|
|
|
class LocalControl : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
LocalControl();
|
|
void run();
|
|
};
|