Rename Reference to RefCounted
This commit is contained in:
parent
fbb5a541ef
commit
04688b92ff
270 changed files with 926 additions and 926 deletions
|
|
@ -31,7 +31,7 @@
|
|||
#ifndef JAVA_CLASS_WRAPPER_H
|
||||
#define JAVA_CLASS_WRAPPER_H
|
||||
|
||||
#include "core/object/reference.h"
|
||||
#include "core/object/ref_counted.h"
|
||||
|
||||
#ifdef ANDROID_ENABLED
|
||||
#include <android/log.h>
|
||||
|
|
@ -42,8 +42,8 @@
|
|||
class JavaObject;
|
||||
#endif
|
||||
|
||||
class JavaClass : public Reference {
|
||||
GDCLASS(JavaClass, Reference);
|
||||
class JavaClass : public RefCounted {
|
||||
GDCLASS(JavaClass, RefCounted);
|
||||
|
||||
#ifdef ANDROID_ENABLED
|
||||
enum ArgumentType{
|
||||
|
|
@ -184,8 +184,8 @@ public:
|
|||
JavaClass();
|
||||
};
|
||||
|
||||
class JavaObject : public Reference {
|
||||
GDCLASS(JavaObject, Reference);
|
||||
class JavaObject : public RefCounted {
|
||||
GDCLASS(JavaObject, RefCounted);
|
||||
|
||||
#ifdef ANDROID_ENABLED
|
||||
Ref<JavaClass> base_class;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue