import cpp11_shared_ptr_template_upcast.*;
public class cpp11_shared_ptr_template_upcast_runme {
static {
try {
System.loadLibrary("cpp11_shared_ptr_template_upcast");
} catch (UnsatisfiedLinkError e) {
System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e);
System.exit(1);
}
}
public static void main(String argv[]) {
PrintableDerived pd = cpp11_shared_ptr_template_upcast.MakePrintableDerived(20);
pd.GetResult();
pd.GetFormatted();
}
}