This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/Logtalk/library/observer.lgt
pmoura 77b1c99030 Missing Logtalk 2.15.2 library files.
git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@826 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
2003-05-04 15:52:00 +00:00

19 lines
351 B
Plaintext

:- category(observer).
:- info([
version is 1.0,
author is 'Paulo Moura',
date is 03/02/09,
comment is 'Smalltalk dependent protocol.']).
:- public(update/1).
:- mode(update(?nonvar), zero_or_one).
:- info(update/1,
[comment is 'Called when an observed object is updated.',
argnames is ['Change']]).
update(_).
:- end_category.