void ListFunctionDef::SetDefaultValues() { SetProperty("Values",""); String xml( "<CryList />\ "); xml.Replace("\\\"","\"");// replace \" with " XML x; x.LoadFrom(xml); x.SaveTo(*this); }
void BuilderFunctionDef::SetDefaultValues() { Return = "void"; Param = "();\n"; SetProperty("Value",""); String xml( "<CryString Value=\"\" />\ "); xml.Replace("\\\"","\"");// replace \" with " XML x; x.LoadFrom(xml); x.SaveTo(*this); }