independizar el nombre del producto

master
Gerardo 2023-01-18 00:42:39 +01:00
parent 540cb6057f
commit 8a55604f04
2 changed files with 3 additions and 3 deletions

View File

@ -133,10 +133,10 @@ bool ClienteLicencias::preguntarDescarga()
return res; return res;
} }
bool ClienteLicencias::cargaLicencia() bool ClienteLicencias::cargaLicencia( char* exePath, char* nameProducto)
{ {
LicCliente cli; LicCliente cli;
return cli.cargaLicencia(this); return cli.cargaLicencia(this, exePath, nameProducto);
} }
bool ClienteLicencias::getPathLic( char* path, char* producto ) bool ClienteLicencias::getPathLic( char* path, char* producto )

View File

@ -20,7 +20,7 @@ public:
ClienteLicencias(void); ClienteLicencias(void);
~ClienteLicencias(void); ~ClienteLicencias(void);
bool cargaLicencia(); bool cargaLicencia( char* exePath=NULL, char* nameProducto=NULL);
virtual bool getClave(char* clave, char* producto ); virtual bool getClave(char* clave, char* producto );