X-Git-Url: https://git.llucax.com/z.facultad/75.52/treemulator.git/blobdiff_plain/31ec4d4de2e362f66015fd28fcfd2b3ef4c3542f..58f5f2e6ba6f33bc457e98ec883f2834c9a5fe6f:/src/clave_variable.h?ds=sidebyside diff --git a/src/clave_variable.h b/src/clave_variable.h index 75cecfd..e568451 100644 --- a/src/clave_variable.h +++ b/src/clave_variable.h @@ -8,7 +8,7 @@ /** Representa una clave de longitud variable. * - * \TODO Usar abreviaciones + * \todo Usar abreviaciones */ class ClaveVariable : public Clave { public : @@ -20,12 +20,16 @@ class ClaveVariable : public Clave { 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; };