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 7class AP_Arming_Tracker : public AP_Arming 8{ 9public: 10 friend class Tracker; 11 12private: 13 14}; 15 16