Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ardupilot
GitHub Repository: Ardupilot/ardupilot
Path: blob/master/AntennaTracker/AP_Arming_Tracker.h
4182 views
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