multimodal resource

This commit is contained in:
aarne
2005-11-06 21:00:36 +00:00
parent 4f6afbab98
commit a4dbad93a1
11 changed files with 200 additions and 5 deletions

View File

@@ -223,7 +223,7 @@ lin
stop_V = regDuplV "stop" ;
jump_V = regV "jump" ;
here_Adv = mkAdv "here" ;
here7to_Adv = mkAdv "here" ;
here7to_Adv = mkAdv ["to here"] ;
here7from_Adv = mkAdv ["from here"] ;
there_Adv = mkAdv "there" ;
there7to_Adv = mkAdv "there" ;

View File

@@ -0,0 +1,9 @@
instance DemResEng of DemRes = open Prelude, ResourceEng, SyntaxEng in {
oper
msS : S -> Str = \x -> x.s ;
msQS : QS -> Str = \x -> x.s ! DirQ ;
msImp : Imp -> Str = \x -> x.s ! Sg ;
} ;

View File

@@ -0,0 +1,7 @@
--# -path=.:../abstract:../../prelude
concrete DemonstrativeEng of Demonstrative =
CategoriesEng ** DemonstrativeI with
(Resource = ResourceEng),
(Basic = BasicEng),
(DemRes = DemResEng) ;

View File

@@ -0,0 +1,8 @@
--# -path=.:../abstract:../../prelude
concrete MultimodalEng of Multimodal =
RulesEng, StructuralEng, BasicEng, TimeEng, DemonstrativeEng ** MultimodalI with
(Resource = ResourceEng),
(Basic = BasicEng),
(Lang = LangEng),
(DemRes = DemResEng) ;