#include "key.hpp"
int key_type::hash()
{
	int sum = 0;
	for(int j=0; j < length(); j++)
		sum += (*this)[j];
	return sum;
}
const key_type& key_type::operator=(string s)
{
	this->string::operator=(s);
}
	
