]> git.llucax.com Git - z.facultad/75.52/treemulator.git/blobdiff - src/clave_fija.h
Recuperacion de nodos eliminados.
[z.facultad/75.52/treemulator.git] / src / clave_fija.h
index 599793167fdbecc9298de8338455739408c646e5..d04baf90d07ec3e846372d1fef0d4615c40db688 100644 (file)
@@ -9,14 +9,16 @@
 class ClaveFija : public Clave {
        public :
                ClaveFija (uchar *n);
-               ClaveFija (int n);
+               ClaveFija (int n, uint data);
                virtual ~ClaveFija () {}
 
                uint Size () const;
                uchar *ToArray () const;
+               uchar *ToRaw (uint &size) const;
                Clave *Clone () const;
 
                virtual bool operator < (const Clave &c) const;
+               virtual bool operator == (const Clave &c) const;
                virtual operator std::string () const {
                        std::string out;
                        std::stringstream ss;