123456789101112131415161718192021 |
- #import <Foundation/Foundation.h>
- @interface XSTracker : NSObject
- @property (nonatomic, strong) NSString* session;
- @property (nonatomic, assign) NSInteger mask;
- @property (nonatomic, class) XSTracker* shared;
- - (void)trace:(NSInteger)code;
- - (void)trace:(NSInteger)code parameters:(id)parameters;
- @end
|