zdk.objc
ZDKEventHandle.h
1//
2// ZDKEventHandle.h
3// ZDK
4//
5
6#ifndef ZDKEventHandle_h
7#define ZDKEventHandle_h
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13@protocol ZDKEventHandle <NSObject>
14
15-(long int)eventHandle;
16-(NSString*)handlesDescription;
17
18@end
19
20NS_ASSUME_NONNULL_END
21
22#endif
Definition: ZDKEventHandle.h:13