FLEXNewRootClass.h 317 B

1234567891011121314151617181920
  1. //
  2. // FLEXNewRootClass.h
  3. // FLEXTests
  4. //
  5. // Created by Tanner on 12/30/20.
  6. // Copyright © 2020 Flipboard. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. /// Root class with one method
  10. OBJC_ROOT_CLASS
  11. @interface FLEXNewRootClass {
  12. Class isa OBJC_ISA_AVAILABILITY;
  13. }
  14. - (void)theOnlyMethod;
  15. @end