| 123456789101112131415161718192021222324 |
- unit unitAppEvents;
- {$mode objfpc}{$H+}
- interface
- type
- // Use "of object" so methods (e.g., TForm1.SaveBooksNow) can be assigned
- TNotifyProc = procedure of object;
- var
- OnBooksChanged: TNotifyProc = nil;
- procedure NotifyBooksChanged;
- implementation
- procedure NotifyBooksChanged;
- begin
- if Assigned(OnBooksChanged) then
- OnBooksChanged();
- end;
- end.
|