/* ModelLauncher.cpp This file contains the C++ native code for the Java class ModelLauncher, defined in TerrainModel.java */ #include "ModelLauncher.h" #include "TerrainViewerModel.h" #ifdef __cplusplus extern "C" { #endif /* * Class: ModelLauncher * Method: initModel * Signature: ()V */ JNIEXPORT void JNICALL Java_ModelLauncher_initModel (JNIEnv *, jclass) { // This method needs to create an instance of the Model. TerrainViewerModel::getModel( ); return; } // end of method initModel #ifdef __cplusplus } #endif