I've built an RDF schema Metamodel and want to define a modeltype for my RDF Schema. I've these files : a metamodel uml (KB3Import.uml) and an other one in rdf schema (MyFirstProfile_CIMSdF_v6.rdf)
So I'd to do something like this on qvto :
modeltype KB3Import uses KB3Import('...');
modeltype MyFirstProfile_CIMSdF_v6 uses MyFirstProfile_CIMSdF_v6("...");
//transformation RDFS_2_UML(in RDFS : MyFirstProfile_CIMSdF_v6, out UML : KB3Import);
main() {
}
Does someone know how do with a local file for the ns uri (on the second line)? Thank you.