#include"Clase.h"
#include<fstream>
using namespace std;
/* Implantacion de  los metodos de la clase 
 * que se le asigno */


//OJO: CAMBIE LA PALABRA "Clase" POR EL NOMBRE DE LA CLASE
//QUE LE FUE ASIGANADA POR EL PROFESOR. LO DEBE HACER EN TODO
//EL ARCHIVO

//Los constructores no tienen valor de retorno
//Constructor por omision
Clase::Clase(){ 
	//Valores asignados por omision
}

//Constructor por copia
Clase::Clase(const Clase& c){
}

//Constructor parametrico
//DEBE RELLENAR CON LOS PARAMETROS Y LUEGO DESCOMENTE. DE LO CONTRARIO DA ERROR 
//DE COMPILACION
//Clase::Clase(
		//Parametros
//	    ){
//}

/*Métodos de acceso*/
//DESARROLLE LOS METODOS DE ACCESO A LOS ATRIBUTOS

//Metodos de modificacion
//DESARROLLE LOS METODOS DE MODIFICACION DE LOS ATRIBUTOS


//Metodos para la gestion de la clave
//DESARROLLE LOS METODOS QUE LE PERMITA MANIPULAR LA CLAVE
//OJO, CAMBIE VOID POR EL TIPO DE DATO DE SU CLAVE
void Clase::obtenerClave(){
}

//OJO, CAMBIE VOID POR EL TIPO DE DATO DE SU CLAVE
void Clase::asignarClave(){
}

//Funcion hash
int Clase::hash(){
}

//Destructor 
Clase::~Clase(){
/*Vacio*/	
}

//Sobre carga de operadores de escritura y 
//lectura de archivos
ostream &operator<<(ostream &file, const Clase &c) {
	return (file);
}

istream &operator>>(istream &file, Clase &c) {

	return (file);
}

