APM:Libraries
PrivateMember.h
Go to the documentation of this file.
1 #pragma once
2 
3 /* Just a stub as an example of how to implement a private member of an
4  * AP_HAL module */
5 
6 #include "AP_HAL_Empty.h"
7 
9 public:
10  PrivateMember(uint16_t foo);
11  void init();
12 private:
13  uint16_t _foo;
14 };
void foo()
PrivateMember(uint16_t foo)