|
Revision 1460, 0.9 KB
(checked in by pmoura, 4 years ago)
|
|
Updated release number to 2.21.0.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
| Line | |
|---|
| 1 | ================================================================= |
|---|
| 2 | Logtalk - Object oriented extension to Prolog |
|---|
| 3 | Release 2.21.0 |
|---|
| 4 | |
|---|
| 5 | Copyright (c) 1998-2004 Paulo Moura. All Rights Reserved. |
|---|
| 6 | ================================================================= |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | To load all entities in this library load the events_loader.lgt utility |
|---|
| 10 | file: |
|---|
| 11 | |
|---|
| 12 | | ?- logtalk_load(events_loader). |
|---|
| 13 | |
|---|
| 14 | The objects event_registry, before_event_registry, and after_event_registry |
|---|
| 15 | implement convenient predicates for registering before and after events. |
|---|
| 16 | |
|---|
| 17 | The protocol event_handlersp declares the two basic event handler predicates |
|---|
| 18 | (before/3 and after/3). You will need to refer this protocol in your objects |
|---|
| 19 | if you want to use the super control structure (^^/1) with these predicates. |
|---|
| 20 | |
|---|
| 21 | The monitor object implements more sophisticated event handling predicates. |
|---|
| 22 | |
|---|
| 23 | Some of the objects assume that the chosen Prolog compiler defines the |
|---|
| 24 | usual sort/2 built-in predicate. |
|---|