FIRFooWrapper.m 401 B

12345678910111213141516171819202122232425262728
  1. //
  2. // FIRFooWrapper.m
  3. // Firebase
  4. //
  5. // Created by Nick Cooke on 5/8/25.
  6. //
  7. #import "FIRFooWrapper.h"
  8. @import FirebaseFirestoreInternalSwift;
  9. @interface FIRFooWrapper ()
  10. // private property. we call through to it's Swift impl
  11. @property() FIRFoo *foo;
  12. @end
  13. @implementation FIRFooWrapper
  14. - (instancetype)init {
  15. _foo = [[FIRFoo alloc] init];
  16. }
  17. - (void)doStuff {
  18. [self.foo doStuff];
  19. }
  20. @end