X-Git-Url: https://git.llucax.com/z.facultad/75.52/treemulator.git/blobdiff_plain/a356d91d88f7f3399d80e922f70e10a8f422a3ba..bb83fdaa6e234bff23810b22fca3a098e2afb975:/src/btree_data.h?ds=inline diff --git a/src/btree_data.h b/src/btree_data.h index d53b85f..db8ecc1 100644 --- a/src/btree_data.h +++ b/src/btree_data.h @@ -20,8 +20,10 @@ class BTreeData { Clave* getClave () { return clave; } uint getChild () { return hijo; } + void setChild (uint c) { hijo = c; } bool operator < (const BTreeData &data) const; + bool operator == (const BTreeData &data) const; virtual operator std::string () const { std::string out = (*clave); std::stringstream ss; @@ -54,7 +56,7 @@ class BTreeLeafData:public BTreeData { class BTreeChildData:public BTreeData { public: - BTreeChildData (uint child):BTreeData () { hijo = child; } + BTreeChildData (uint child):BTreeData () { hijo = child; clave = NULL; } BTreeChildData (uchar *node); virtual ~BTreeChildData ();