DefinedClassesNotificationCenter.pas 567 B

123456789101112131415161718
  1. {$mode delphi}
  2. {$modeswitch objectivec1}
  3. {$modeswitch cvar}
  4. {$packrecords c}
  5. unit DefinedClassesNotificationCenter;
  6. interface
  7. type
  8. NCWidgetController = objcclass external;
  9. NCWidgetListViewController = objcclass external;
  10. NCWidgetSearchViewController = objcclass external;
  11. NCWidgetListViewDelegateProtocol = objcprotocol external name 'NCWidgetListViewDelegate';
  12. NCWidgetProvidingProtocol = objcprotocol external name 'NCWidgetProviding';
  13. NCWidgetSearchViewDelegateProtocol = objcprotocol external name 'NCWidgetSearchViewDelegate';
  14. implementation
  15. end.