#include <stdio.h> class Runtime { public: Runtime() { } ~Runtime() { } void native_call() { printf("doing linux native call\n"); } };