unplugged-system/build/bazel/examples/cc/aidl_library/program.cpp

9 lines
177 B
C++

#include <foo/BpFoo.h>
int main() {
// Call boilerplate implementation of proxy (e.g. BpFoo)
foo::BpFoo* bf = new foo::BpFoo(nullptr);
bf->doFoo();
return 0;
}