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 ();
/* DEBUG */
- private:
- BTree () {}
-
public:
void PrintNode (uint num);
};