What have to be done to make for example this line work. (non of my LoadPropertyClassFactory is working)
how can i avoid this by using config file ??
if (!celPL->LoadPropertyClassFactory ("cel.pcfactory.test"))
return false;
also why i have to use csQueryRegistryTagInterface for my cel stuff and not csQueryRegistry???
loader=csQueryRegistry<iLoader>(object_reg);
if (!loader) return ReportError("iLoader Query failed");
celPL=csQueryRegistryTagInterface<iCelPlLayer>(object_reg,"iCelLayer.Tag");
if (!celPL) return ReportError("iCelPlLayer Query failed");
celBL=csQueryRegistryTagInterface<iCelBlLayer>(object_reg,"iCelBlLayer.Tag");
if (!celBL) return ReportError("iCelBlLayer Query failed");
celPL->RegisterBehaviourLayer(celBL);