12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #if !UNITY_WSA_10_0
- using OpenCVForUnity.CoreModule;
- using OpenCVForUnity.UtilsModule;
- using System;
- using System.Collections.Generic;
- using System.Runtime.InteropServices;
- namespace OpenCVForUnity.TextModule {
- // C++: class Callback
- //javadoc: Callback
- public class Callback : DisposableOpenCVObject {
- protected override void Dispose(bool disposing) {
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- try {
- if (disposing) {
- }
- if (IsEnabledDispose) {
- if (nativeObj != IntPtr.Zero)
- text_Callback_delete(nativeObj);
- nativeObj = IntPtr.Zero;
- }
- } finally {
- base.Dispose(disposing);
- }
- #else
- return;
- #endif
- }
- protected internal Callback(IntPtr addr)
- : base(addr) {
- }
- public IntPtr getNativeObjAddr() {
- return nativeObj;
- }
- // internal usage only
- public static Callback __fromPtr__(IntPtr addr) {
- return new Callback(addr);
- }
- #if (UNITY_ANDROID && !UNITY_EDITOR)
- const string LIBNAME = "opencvforunity";
- // native support for java finalize()
- [DllImport(LIBNAME)]
- private static extern void text_Callback_delete(IntPtr nativeObj);
- #endif
- }
- }
- #endif
|