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