X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0424e24e1f270b3c65b20e994079679b18be3eb8..3f8dfa54581750e47851e7502d180425c6a65d48:/src/bindings/java/jxbt_utilities.cpp diff --git a/src/bindings/java/jxbt_utilities.cpp b/src/bindings/java/jxbt_utilities.cpp index d6fe7e7539..ba5d746554 100644 --- a/src/bindings/java/jxbt_utilities.cpp +++ b/src/bindings/java/jxbt_utilities.cpp @@ -1,17 +1,17 @@ /* Various JNI helper functions */ -/* Copyright (c) 2007-2014. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include /* abort */ -#include "xbt/misc.h" #include "xbt/sysdep.h" -#include "xbt/str.h" #include "jxbt_utilities.h" +#include /* abort */ + +SG_BEGIN_DECL() + jclass jxbt_get_class(JNIEnv * env, const char *name) { jclass cls = env->FindClass(name); @@ -236,3 +236,5 @@ void jxbt_throw_task_cancelled(JNIEnv * env, char *details) { jxbt_throw_by_name(env, "org/simgrid/msg/TaskCancelledException", details); } + +SG_END_DECL()