CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/AntennaTracker/AP_Arming.h
Views: 1798
1
#pragma once
2
3
#include <AP_Arming/AP_Arming.h>
4
5
// this class isn't actually used by Tracker; it's really just here so
6
// the singleton doesn't come back as nullptr
7
class AP_Arming_Tracker : public AP_Arming
8
{
9
public:
10
friend class Tracker;
11
12
private:
13
14
};
15
16