本文整理汇总了C++中StringHash::find方法的典型用法代码示例。如果您正苦于以下问题:C++ StringHash::find方法的具体用法?C++ StringHash::find怎么用?C++ StringHash::find使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StringHash
的用法示例。
在下文中一共展示了StringHash::find方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: crearConfigServer
/**
crearConfigServer
@param past: Puerto Programa Administrador - Servidor de Transacciones.
@param pcst: Puerto Programa Cliente - Servidor de Transacciones.
@param maxClients: Numero maximo de clientes.
@param bdNombre: Nombre de la base de datos.
@param bdDriver: Nombre del driver.
@param bdHost: Nombre del host.
@param bdPuerto: Nombre del puerto.
@param usuario: Nombre de usuario.
@param password: Password de usuario.
*/
QPDocumentoXML SbXmlConfig::crearConfigServer(StringHash argumentos)
{
QPDocumentoXML conf;
QDomElement raiz = conf.createElement( "QPSConfig" );
conf.appendChild( raiz );
QDomElement puertoAST = conf.createElement("PuertoAST");
QDomText pastTxt = conf.createTextNode( *argumentos.find("PuertoAST") );
puertoAST.appendChild(pastTxt);
raiz.appendChild(puertoAST);
QDomElement puertoCST = conf.createElement("PuertoCST");
QDomText pcstTxt = conf.createTextNode(*argumentos.find("PuertoCST") );
puertoCST.appendChild(pcstTxt);
raiz.appendChild(puertoCST);
QDomElement clientes = conf.createElement("MaxClients");
QDomText mcTxt = conf.createTextNode(*argumentos.find("MaxClients"));
clientes.appendChild(mcTxt);
raiz.appendChild(clientes);
QDomElement conexion = conf.createElement("QPConexion");
raiz.appendChild(conexion);
QDomElement bd = conf.createElement("QPBD");
conexion.appendChild(bd);
QDomElement bdname = conf.createElement("bdnombre");
QDomText bdnameTxt = conf.createTextNode(*argumentos.find("bdnombre"));
bdname.appendChild(bdnameTxt);
bd.appendChild(bdname);
QDomElement bddriver = conf.createElement("bddriver");
QDomText bddriverTxt = conf.createTextNode(*argumentos.find("bddriver"));
bddriver.appendChild(bddriverTxt);
bd.appendChild(bddriver);
QDomElement bdhost = conf.createElement("bdhost");
QDomText bdhostTxt = conf.createTextNode(*argumentos.find("bdhost"));
bdhost.appendChild(bdhostTxt);
bd.appendChild(bdhost);
QDomElement bdpuerto = conf.createElement("bdpuerto");
QDomText bdpuertoTxt = conf.createTextNode(*argumentos.find("bdpuerto"));
bdpuerto.appendChild(bdpuertoTxt);
bd.appendChild(bdpuerto);
QDomElement user = conf.createElement("usuario");
QDomText usuarioTxt = conf.createTextNode(*argumentos.find("usuario"));
user.appendChild(usuarioTxt);
bd.appendChild(user);
QDomElement pass = conf.createElement("password");
QDomText passTxt = conf.createTextNode(*argumentos.find("password"));
pass.appendChild(passTxt);
bd.appendChild(pass);
return conf;
}