]> git.llucax.com Git - z.facultad/75.52/treemulator.git/blobdiff - src/btree.h
tagged 1.1
[z.facultad/75.52/treemulator.git] / src / btree.h
index 526b428dac7953ecfa459338f38607b16481796e..9e492139317a15351162c43f5c3637fc42a767cf 100644 (file)
@@ -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);
 };