Commit 96c0a25eee1fd90e06edf7406d83ad19f5d770cf

Authored by guoruipeng
1 parent df4f4895

no message

Showing 1 changed file with 22 additions and 0 deletions
CNLiveSendPositionProtocol.h 0 → 100644
  1 +//
  2 +// CNLiveSendPositionProtocol.h
  3 +// CNLiveBeeHive
  4 +//
  5 +// Created by open on 2019/11/22.
  6 +//
  7 +
  8 +#import <Foundation/Foundation.h>
  9 +#import "BHServiceProtocol.h"
  10 +
  11 +NS_ASSUME_NONNULL_BEGIN
  12 +
  13 +@protocol CNLiveSendPositionProtocol <NSObject,BHServiceProtocol>
  14 +
  15 +- (UIViewController *)getMapViewController;
  16 +- (void)pushToMapViewController;
  17 +//位置信息详情VC
  18 +- (UIViewController *)getMapDetailViewController;
  19 +- (void)pushToMapDetailViewController;
  20 +@end
  21 +
  22 +NS_ASSUME_NONNULL_END
... ...