Codebase list crossguid / f33264d4-16b6-4237-b071-553a6e227bb2/main android / jni / jnitest.cpp
f33264d4-16b6-4237-b071-553a6e227bb2/main

Tree @f33264d4-16b6-4237-b071-553a6e227bb2/main (Download .tar.gz)

jnitest.cpp @f33264d4-16b6-4237-b071-553a6e227bb2/mainraw · history · blame

#include <string>
#include <sstream>
#include <jni.h>
#include <iostream>
#include "../../test.h"
#include "../../guid.h"

extern "C" 
{

  jstring Java_ca_graemehill_crossguid_testapp_MainActivity_test(JNIEnv *env, jobject thiz)
  {
    std::stringstream resultStream;
    test(GuidGenerator(env), resultStream);
    return env->NewStringUTF(resultStream.str().c_str());
  }

}