CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
async_callback.h
1
3#ifndef _async_callback_h_
4#define _async_callback_h_
5
6#include <system/multicast_delegate.h>
7#include <system/shared_ptr.h>
8
9namespace System
10{
11 class IAsyncResult;
13 using AsyncCallback = System::MulticastDelegate<void(SharedPtr<IAsyncResult>)>;
14}
15#endif
Pointer class to wrap types being allocated on heap. Use it to manage memory for classes inheriting O...
Definition: smart_ptr.h:180
Definition: db_command.h:9
System::MulticastDelegate< void(SharedPtr< IAsyncResult >)> AsyncCallback
A delegate type that represents a method to be called when asynchronous operation completes.
Definition: async_callback.h:13