XSTracker.h 435 B

123456789101112131415161718192021
  1. //
  2. // XSTracker.h
  3. // XenonSDK
  4. //
  5. // Created by SAGESSE on 2019/5/29.
  6. // Copyright © 2019 SAGESSE. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface XSTracker : NSObject
  10. @property (nonatomic, strong) NSString* session;
  11. @property (nonatomic, assign) NSInteger mask;
  12. @property (nonatomic, class) XSTracker* shared;
  13. - (void)trace:(NSInteger)code;
  14. - (void)trace:(NSInteger)code parameters:(id)parameters;
  15. @end