summaryrefslogtreecommitdiffstats
path: root/include/jau/jni
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2022-05-05 09:01:13 +0200
committerSven Gothel <[email protected]>2022-05-05 09:01:13 +0200
commit3b624115b3ece7a0b139de087e4f4c7705168047 (patch)
treecd8bf1aa5f9240687b96870eb1d00f75bb34df40 /include/jau/jni
parent589c2c69b87631a6f0e134142dca825641f9a7fb (diff)
Move all of jni_mem into namespace jau
Diffstat (limited to 'include/jau/jni')
-rw-r--r--include/jau/jni/jni_mem.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/jau/jni/jni_mem.hpp b/include/jau/jni/jni_mem.hpp
index b99f68a..579eb6d 100644
--- a/include/jau/jni/jni_mem.hpp
+++ b/include/jau/jni/jni_mem.hpp
@@ -35,6 +35,8 @@
#include <jau/basic_types.hpp>
+namespace jau {
+
/** \addtogroup JavaVM
*
* @{
@@ -72,6 +74,8 @@ public:
/* Each thread has a local jni_env variable of JNIEnvContainer type */
extern thread_local JNIEnvContainer jni_env;
+class JavaGlobalObj; // fwd
+
/*
* This class provides a lifetime-managed GlobalRef variable,
* which is automatically deleted when it goes out of scope.
@@ -209,5 +213,7 @@ public:
/**@}*/
+} /* namespace jau */
+
#endif /* JAU_JNIMEM__HPP_ */