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

📄 gistcursor.h

📁 FastDb是高效的内存数据库系统
💻 H
字号:
// -*- Mode: C++ -*-//          GiSTcursor.h//// Copyright (c) 1996, Regents of the University of California// $Header: /usr/local/devel/GiST/libGiST/libGiST/GiSTcursor.h,v 1.1.1.1 1996/08/06 23:47:21 jmh Exp $#ifndef GISTCURSOR_H#define GISTCURSOR_H#include "GiSTdefs.h"#include "GiSTentry.h"#include "GiSTpredicate.h"#include "GiSTlist.h"#include "GiSTpath.h"class GiST;class GiSTcursor : public GiSTobject{  public:    GiSTcursor(const GiST& gist, const GiSTpredicate& query);    GiSTentry *Next();    GiSTobjid IsA() const { return GISTCURSOR_CLASS; }    ~GiSTcursor();    const GiSTpath& Path() const;  private:    const GiST& gist;    GiSTpath path;    GiSTlist<GiSTentry*> stack;    int first;    GiSTpredicate *query;    int lastlevel;};#endif

⌨️ 快捷键说明

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