]> git.llucax.com Git - z.facultad/75.52/treemulator.git/blobdiff - src/clave_variable.h
Agrego ToRaw a las claves.
[z.facultad/75.52/treemulator.git] / src / clave_variable.h
index e568451fc012d0d8c3d9dbfa1f26458a71b63542..224f4e0f50d111ca6b9d18ae7e4ed47cb02abb4c 100644 (file)
@@ -18,6 +18,7 @@ class ClaveVariable : public Clave {
 
                uint Size () const;
                uchar *ToArray () const;
+               uchar *ToRaw (uint &size) const;
                Clave *Clone () const;
 
                bool Abrev (ClaveVariable *c);
@@ -31,6 +32,7 @@ class ClaveVariable : public Clave {
        private:
                std::string abreviar(std::string &primera, std::string &actual, int &iguales);
                std::string data;
+               std::string raw_data;
 };
 
 #endif