diff --git a/src/catalan/AllCat.gf b/src/catalan/AllCat.gf index d679dac5..254b1da2 100644 --- a/src/catalan/AllCat.gf +++ b/src/catalan/AllCat.gf @@ -3,5 +3,6 @@ concrete AllCat of AllCatAbs = LangCat, IrregCat, - ExtraCat - ** {} ; + ExtraCat + ** open ExtendCat + in {} ; diff --git a/src/catalan/ExtendCat.gf b/src/catalan/ExtendCat.gf new file mode 100644 index 00000000..20ab56ae --- /dev/null +++ b/src/catalan/ExtendCat.gf @@ -0,0 +1,19 @@ +--# -path=alltenses:../common:../abstract:../romance +concrete ExtendCat of Extend = CatCat ** ExtendRomanceFunctor-- - + -- [ + -- ] + -- don't forget to put the names of your own + -- definitions here + with + (Grammar = GrammarCat), (Syntax = SyntaxCat), (ResRomance = ResCat) ** + open + GrammarCat, + ResCat, + MorphoCat, + Coordination, + Prelude, + ParadigmsCat in { + -- put your own definitions here + + +} ; diff --git a/src/italian/AllIta.gf b/src/italian/AllIta.gf index 67ce19e8..d2eece40 100644 --- a/src/italian/AllIta.gf +++ b/src/italian/AllIta.gf @@ -4,4 +4,5 @@ concrete AllIta of AllItaAbs = LangIta, -- IrregIta, ExtraIta - ** {} ; + ** open ExtendIta + in {} ; diff --git a/src/italian/ExtendIta.gf b/src/italian/ExtendIta.gf new file mode 100644 index 00000000..0df8be02 --- /dev/null +++ b/src/italian/ExtendIta.gf @@ -0,0 +1,19 @@ +--# -path=alltenses:../common:../abstract:../romance +concrete ExtendIta of Extend = CatIta ** ExtendRomanceFunctor-- - + -- [ + -- ] + -- don't forget to put the names of your own + -- definitions here + with + (Grammar = GrammarIta), (Syntax = SyntaxIta), (ResRomance = ResIta) ** + open + GrammarIta, + ResIta, + MorphoIta, + Coordination, + Prelude, + ParadigmsIta in { + -- put your own definitions here + + +} ;