+
+BTreeChildData::BTreeChildData (uchar *node)
+{
+ memcpy (&hijo, node, sizeof (uint));
+}
+
+BTreeChildData::~BTreeChildData ()
+{
+}
+
+uint BTreeChildData::Size () const
+{
+ std::cout << "BTreeChildData::Size()" << std::endl;
+ return sizeof (uint);
+}
+
+uchar* BTreeChildData::ToArray () const
+{
+ uchar *out = new uchar[Size()];
+ memcpy (out, &hijo, sizeof (uint));
+ return out;
+}
+