1
0
forked from GitHub/gf-core

Extending resource.

This commit is contained in:
aarne
2003-11-19 17:33:06 +00:00
parent 18dfde370e
commit 1ca5e5398a
20 changed files with 2673 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
abstract Database = {
flags startcat=Query ;
cat
Query ;
Category ; Subject ; Value ; Property ; Relation ; Comparison ; Name ;
Feature ;
fun
WhichAre : Category -> Property -> Query ;
IsThere : Category -> Query ;
AreThere : Category -> Query ;
IsIt : Subject -> Property -> Query ;
WhatIs : Value -> Query ;
MoreThan : Comparison -> Subject -> Property ;
TheMost : Comparison -> Category -> Value ;
Relatively : Comparison -> Category -> Property ;
RelatedTo : Relation -> Subject -> Property ;
Individual : Name -> Subject ;
AllN : Category -> Subject ;
Any : Category -> Subject ;
MostN : Category -> Subject ;
EveryN : Category -> Subject ;
FeatureOf : Feature -> Subject -> Subject ;
ValueOf : Feature -> Name -> Value ;
WithProperty : Category -> Property -> Category ;
} ;