rt.h
来自「俄罗斯牛人KK的作品,著名的ORDBMS,这里上传最新的3.39版本源代码.希望」· C头文件 代码 · 共 37 行
H
37 行
// -*- Mode: C++ -*-
// RT.h
//
// Copyright (c) 1996, Regents of the University of California
// $Header: /cvsroot/fastdb/fastdb/GiST/RTree/RT.h,v 1.1 2007/07/18 20:45:47 knizhnik Exp $
#define RT_H
#include "GiST.h"
#include "GiSTdb.h"
#include "RTentry.h"
#include "RTnode.h"
#include "RTpredicate.h"
class RT : public GiST
{
public:
// optional, for debugging support
GiSTobjid IsA() { return RT_CLASS; }
RT(dbDatabase& aDb) : db(aDb) {}
protected:
// Required members
GiSTnode *CreateNode() const { return new RTnode; }
GiSTstore *CreateStore() const { return new GiSTdb(db); }
dbDatabase& db;
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?