mirror of https://github.com/ArduPilot/ardupilot
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() {}
|
||
|
|