/** Representa una clave de longitud variable.
*
- * \TODO Usar abreviaciones
+ * \todo Usar abreviaciones
*/
class ClaveVariable : public Clave {
public :
uchar *ToArray () const;
Clave *Clone () const;
+ bool Abrev (ClaveVariable *c);
+ bool DesAbrev (ClaveVariable *c);
+
virtual bool operator < (const Clave &c) const;
virtual bool operator == (const Clave &c) const;
virtual operator std::string () const {
return data;
}
private:
+ std::string abreviar(std::string &primera, std::string &actual, int &iguales);
std::string data;
};