?? rt.h
字號(hào):
// -*- 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;
};
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -