mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 14:38:30 -04:00
12 lines
162 B
C++
12 lines
162 B
C++
|
|
#include "PrivateMember.h"
|
|
|
|
using namespace Empty;
|
|
|
|
EmptyPrivateMember::EmptyPrivateMember(uint16_t foo) :
|
|
_foo(foo)
|
|
{}
|
|
|
|
void EmptyPrivateMember::init() {}
|
|
|