X-Git-Url: https://git.llucax.com/z.facultad/75.52/treemulator.git/blobdiff_plain/31ec4d4de2e362f66015fd28fcfd2b3ef4c3542f..2f18bb22e1573898bb70f0a46897fbd032ef2734:/src/clave_variable.h?ds=inline diff --git a/src/clave_variable.h b/src/clave_variable.h index 75cecfd..224f4e0 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 : @@ -18,15 +18,21 @@ class ClaveVariable : public Clave { uint Size () const; uchar *ToArray () const; + uchar *ToRaw (uint &size) 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; + std::string raw_data; }; #endif