X-Git-Url: https://git.llucax.com/z.facultad/75.52/treemulator.git/blobdiff_plain/baff628083af0bab49fafdab5ed0445a6407f2de..HEAD:/src/btree.h?ds=sidebyside diff --git a/src/btree.h b/src/btree.h index 526b428..9e49213 100644 --- a/src/btree.h +++ b/src/btree.h @@ -251,8 +251,7 @@ struct BTreeFindResult { class BTree { public: BTree (const std::string &filename, unsigned int block_size, int t_t = TYPE_IDENTIFICACION, int k_t = KEY_FIXED, bool create_new_file = false); - - static BTree *Open (const std::string &filename); + BTree (const std::string &filename); ~BTree (); @@ -334,9 +333,6 @@ class BTree { /* DEBUG */ - private: - BTree () {} - public: void PrintNode (uint num); };