Use forward declaration in RCTCxxModule
Reviewed By: mhorowitz Differential Revision: D4821449 fbshipit-source-id: 8e75a7b17e0986bc9416a0afde0d7dfa179d4fed
This commit is contained in:
parent
b2647ea335
commit
ceac54ebe9
|
@ -12,7 +12,14 @@
|
||||||
#import <Foundation/Foundation.h>
|
#import <Foundation/Foundation.h>
|
||||||
|
|
||||||
#import <React/RCTBridgeModule.h>
|
#import <React/RCTBridgeModule.h>
|
||||||
#import <cxxreact/CxxModule.h>
|
|
||||||
|
namespace facebook {
|
||||||
|
namespace xplat {
|
||||||
|
namespace module {
|
||||||
|
class CxxModule;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Subclass RCTCxxModule to use cross-platform CxxModule on iOS.
|
* Subclass RCTCxxModule to use cross-platform CxxModule on iOS.
|
||||||
|
|
Loading…
Reference in New Issue