]> git.llucax.com Git - z.facultad/75.52/treemulator.git/blobdiff - src/btree_data.h
Refactoring para unificar nomenclaturas.
[z.facultad/75.52/treemulator.git] / src / btree_data.h
index 027c5954fa8c57a32665749c81b856c54d9dbad8..53af1fc9c62f35764d320d7d892e6e701a87b9eb 100644 (file)
@@ -46,12 +46,12 @@ class BTreeData {
                virtual uchar *ToArray () const;
 
                /** Retorna la clave manejada */
-               Clave* getClave () { return clave; }
-               void setClave (Clave *k) { clave = k; }
+               Clave* GetKey () { return clave; }
+               void SetKey (Clave *k) { clave = k; }
                /** Retorna el hijo apuntado */
-               uint getChild () { return hijo; }
+               uint GetChild () { return hijo; }
                /** Setea el hijo apuntado */
-               void setChild (uint c) { hijo = c; }
+               void SetChild (uint c) { hijo = c; }
 
                bool Abrev (BTreeData *anterior);
                bool DesAbrev (BTreeData *anterior);