Esempio n. 1
0
NodoTemplate<T>::NodoTemplate(TInfoInventario<T> *lista){
	setSgte(NULL);
	setAnte(NULL);
	setLista(lista);
}
Esempio n. 2
0
NodoTemplate<T>::NodoTemplate(){
	setSgte(NULL);
	setAnte(NULL);
	setLista(NULL);
}
Esempio n. 3
0
NodoGenero::NodoGenero(Genero * _gener){
	setGener(_gener);
	setSgte(NULL);
}
Esempio n. 4
0
NodoInterprete::NodoInterprete(void)
{
	setInterprete(new Interprete());
	setSgte(NULL);
}
Esempio n. 5
0
NodoInterprete::NodoInterprete(Interprete * _interprete){
	setInterprete(_interprete);
	setSgte(NULL);
}
Esempio n. 6
0
nodo::nodo(int pdato, nodo *pnodo)
{
	setDato(pdato);
	setSgte(pnodo);
}
Esempio n. 7
0
nodo::nodo()
{
	setDato(NULL);
	setSgte(NULL);
}