public AttachmentSaveFuncWrapper(Poppler.AttachmentSaveFunc managed)
 {
     this.managed = managed;
     if (managed != null)
     {
         NativeDelegate = new AttachmentSaveFuncNative(NativeCallback);
     }
 }
        public static Poppler.AttachmentSaveFunc GetManagedDelegate(AttachmentSaveFuncNative native)
        {
            if (native == null)
            {
                return(null);
            }
            AttachmentSaveFuncWrapper wrapper = (AttachmentSaveFuncWrapper)native.Target;

            if (wrapper == null)
            {
                return(null);
            }
            return(wrapper.managed);
        }
		public static Poppler.AttachmentSaveFunc GetManagedDelegate (AttachmentSaveFuncNative native)
		{
			if (native == null)
				return null;
			AttachmentSaveFuncWrapper wrapper = (AttachmentSaveFuncWrapper) native.Target;
			if (wrapper == null)
				return null;
			return wrapper.managed;
		}
		public AttachmentSaveFuncWrapper (Poppler.AttachmentSaveFunc managed)
		{
			this.managed = managed;
			if (managed != null)
				NativeDelegate = new AttachmentSaveFuncNative (NativeCallback);
		}
		internal AttachmentSaveFuncInvoker (AttachmentSaveFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
		{
			this.native_cb = native_cb;
			__data = data;
			__notify = notify;
		}
		internal AttachmentSaveFuncInvoker (AttachmentSaveFuncNative native_cb, IntPtr data) : this (native_cb, data, null) {}
		internal AttachmentSaveFuncInvoker (AttachmentSaveFuncNative native_cb) : this (native_cb, IntPtr.Zero, null) {}
 internal AttachmentSaveFuncInvoker(AttachmentSaveFuncNative native_cb, IntPtr data, GLib.DestroyNotify notify)
 {
     this.native_cb = native_cb;
     __data         = data;
     __notify       = notify;
 }
 internal AttachmentSaveFuncInvoker(AttachmentSaveFuncNative native_cb, IntPtr data) : this(native_cb, data, null)
 {
 }
 internal AttachmentSaveFuncInvoker(AttachmentSaveFuncNative native_cb) : this(native_cb, IntPtr.Zero, null)
 {
 }