This commit is contained in:
Sid Dahiya 2020-06-22 13:54:06 -07:00
Родитель 6bbb914d70
Коммит 3624dd1683
2 изменённых файлов: 3 добавлений и 5 удалений

Просмотреть файл

@ -51,7 +51,7 @@ NS_ASSUME_NONNULL_BEGIN
@brief Returns current endpoint if it is set, empty string otherwise. @brief Returns current endpoint if it is set, empty string otherwise.
@return Returns current endpoint if it is set, empty string otherwise. @return Returns current endpoint if it is set, empty string otherwise.
*/ */
+(NSString *)getCurrentEndpoint; +(NSString *)currentEndpoint;
/*! /*!
@brief Sets callback for OnDisableNotification event. @brief Sets callback for OnDisableNotification event.

Просмотреть файл

@ -105,11 +105,9 @@ std::shared_ptr<DefaultDataViewer> _viewer;
return result; return result;
} }
+(NSString *)getCurrentEndpoint +(NSString *)currentEndpoint
{ {
NSString *currentEndpoint = [NSString stringWithCString:_viewer->GetCurrentEndpoint().c_str() encoding:[NSString defaultCStringEncoding]]; return [NSString stringWithCString:_viewer->GetCurrentEndpoint().c_str() encoding:[NSString defaultCStringEncoding]];
return currentEndpoint;
} }
+(void)registerOnDisableNotification:(void(^)(void))callback +(void)registerOnDisableNotification:(void(^)(void))callback