zdk.net
ZHandle.h
1 //
2 // ZHandle.h
3 // ZDK
4 //
5 
6 #ifndef ZDK_NET_ZHandle_h
7 #define ZDK_NET_ZHandle_h
8 
9 #include "native_shared_ptr.h"
10 #include "PublicInterfaces.h"
11 
12 using namespace System::Collections::Generic;
13 
14 namespace ZDK_NET
15 {
16 
17  public interface class ZHandle
18  {
19  public:
20 
21  long long Handle();
22 
23  void Initialize();
24 
25  void ReleaseReference();
26 
27  };
28 }
29 
30 #endif
ZDK_NET::ZHandle
Definition: ZHandle.h:18