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/proto_hierarchyp.lgt
2001-06-06 19:40:57 +00:00

32 lines
532 B
Plaintext

:- protocol(proto_hierarchyp,
extends(hierarchyp)).
:- info([
version is 1.0,
authors is 'Paulo Moura',
date is 2000/7/24,
comment is 'Prototype hierarchy protocol.']).
:- public(parent/1).
:- mode(parent(?object), zero_or_more).
:- info(parent/1, [
comment is 'Returns, by backtracking, all object parents.',
argnames is ['Parent']]).
:- public(parents/1).
:- mode(parents(-list), one).
:- info(parents/1, [
comment is 'List of all object parents.',
argnames is ['Parents']]).
:- end_protocol.