⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rtnode.h

📁 fastdb-241源码
💻 H
字号:
// -*- Mode: C++ -*-

//          RTnode.h
//
// Copyright (c) 1996, Regents of the University of California
// $Header: /usr/local/devel/GiST/libGiST/RSTree/RTnode.h,v 1.1.1.1 1996/08/06 23:47:24 jmh Exp $

#ifndef RTNODE_H
#define RTNODE_H

#include "RTentry.h"

class RTnode : public GiSTnode {
public:

    GiSTobjid IsA() const { return RTNODE_CLASS; }
    GiSTentry *CreateEntry() const { return new RTentry; }
    int FixedLength() const { return sizeof(RTkey); }
    GiSTobject *Copy() const { return new RTnode(*this); }
    // A support routine for PickSplit
    RTentry *RTUnionEntries(const int entryvec[], const int min, 
			    const int max);

  // two of the basic GiST methods
    GiSTnode *PickSplit();
    GiSTentry* Union() const;
};

#endif






⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -