Logtalk 2.26.2 files.

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@1488 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
pmoura
2005-12-24 18:26:23 +00:00
parent 3455276aa2
commit 60fbc754f9
123 changed files with 130 additions and 4097 deletions

View File

@@ -1,6 +0,0 @@
:- object(descendant1,
imports(interface),
extends(prototype1)).
:- end_object.

View File

@@ -1,6 +0,0 @@
:- object(descendant2,
imports(interface),
extends(prototype2)).
:- end_object.

View File

@@ -1,6 +0,0 @@
:- object(descendant3,
imports(interface),
extends(prototype3)).
:- end_object.

View File

@@ -1,6 +0,0 @@
:- object(instance1,
instantiates(subclass1)).
:- end_object.

View File

@@ -1,6 +0,0 @@
:- object(instance2,
instantiates(subclass2)).
:- end_object.

View File

@@ -1,6 +0,0 @@
:- object(instance3,
instantiates(subclass3)).
:- end_object.

View File

@@ -1,6 +0,0 @@
:- object(parent,
imports(predicates, interface)).
:- end_object.

View File

@@ -1,7 +0,0 @@
:- object(prototype1,
imports(interface),
extends(public::parent)).
:- end_object.

View File

@@ -1,7 +0,0 @@
:- object(prototype2,
imports(interface),
extends(protected::parent)).
:- end_object.

View File

@@ -1,7 +0,0 @@
:- object(prototype3,
imports(interface),
extends(private::parent)).
:- end_object.

View File

@@ -1,7 +0,0 @@
:- object(root,
imports(predicates, interface),
instantiates(root)).
:- end_object.

View File

@@ -1,7 +0,0 @@
:- object(subclass1,
imports(interface),
specializes(public::root)).
:- end_object.

View File

@@ -1,7 +0,0 @@
:- object(subclass2,
imports(interface),
specializes(protected::root)).
:- end_object.

View File

@@ -1,7 +0,0 @@
:- object(subclass3,
imports(interface),
specializes(private::root)).
:- end_object.