Summary: Change modulename to FlipperKit Reviewed By: passy Differential Revision: D9940793 fbshipit-source-id: ea3c6633c481e29fc192cea7465fe3a93cf28f87
17 lines
302 B
Plaintext
17 lines
302 B
Plaintext
#ifdef FB_SONARKIT_ENABLED
|
|
|
|
#include "SKStateUpdateCPPWrapper.h"
|
|
|
|
SKStateUpdateCPPWrapper::SKStateUpdateCPPWrapper(id<FlipperStateUpdateListener> controller) {
|
|
delegate_ = controller;
|
|
}
|
|
|
|
void SKStateUpdateCPPWrapper::onUpdate() {
|
|
if (!delegate_) {
|
|
return;
|
|
}
|
|
[delegate_ onUpdate];
|
|
}
|
|
|
|
#endif
|