📄 bt.h
字号:
// -*- Mode: C++ -*-// BT.h//// Copyright (c) 1996, Regents of the University of California// $Header: /usr/local/devel/GiST/libGiST/BTree/BT.h,v 1.1.1.1 1996/08/06 23:47:18 jmh Exp $#ifndef BT_H#define BT_H#include "GiST.h"#include "GiSTdb.h"#include "BTentry.h"#include "BTnode.h"#include "BTpredicate.h"class BT : public GiST{public: // optional, for debugging support GiSTobjid IsA() { return BT_CLASS; } BT(dbDatabase& aDb) : db(aDb) {} protected: // Required members GiSTnode *CreateNode() const { return new BTnode; } GiSTstore *CreateStore() const { return new GiSTdb(db); } // set special property int IsOrdered() const { return 1; } dbDatabase& db;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -