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,16 @@
abstract Restaurant = Database ** {
fun
Restaurant, Bar : Category ;
French, Italian, Indian, Japanese : Property ;
address, phone, priceLevel : Feature ;
Cheap, Expensive : Comparison ;
WhoRecommend : Name -> Query ;
WhoHellRecommend : Name -> Query ;
-- examples of restaurant names
LucasCarton : Name ;
LaCoupole : Name ;
BurgerKing : Name ;
} ;