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

📄 root.h

📁 在Linux下做的QuadTree的程序
💻 H
字号:
/********************************************************************** * $Id: Root.h 1986 2007-06-08 15:27:42Z mloskot $ * * GEOS - Geometry Engine Open Source * http://geos.refractions.net * * Copyright (C) 2006 Refractions Research Inc. * * This is free software; you can redistribute and/or modify it under * the terms of the GNU Lesser General Public Licence as published * by the Free Software Foundation.  * See the COPYING file for more information. * **********************************************************************/#ifndef GEOS_IDX_BINTREE_ROOT_H#define GEOS_IDX_BINTREE_ROOT_H#include <geos/index/bintree/NodeBase.h> // for inheritance// Forward declarationsnamespace geos {	namespace index { 		namespace bintree { 			class Interval;			class Node;		}	}}namespace geos {namespace index { // geos::indexnamespace bintree { // geos::index::bintree/** \brief * The root node of a single Bintree. * * It is centred at the origin, * and does not have a defined extent. */class Root: public NodeBase {private:	// the singleton root node is centred at the origin.	static double origin;	void insertContained(Node *tree,			Interval *itemInterval,			void* item);public:	Root() {}	~Root() {}	void insert(Interval *itemInterval,void* item);protected:	bool isSearchMatch(Interval* /*interval*/) { return true; }};} // namespace geos::index::bintree} // namespace geos::index} // namespace geos#endif // GEOS_IDX_BINTREE_ROOT_H/********************************************************************** * $Log$ * Revision 1.1  2006/03/22 16:01:33  strk * indexBintree.h header split, classes renamed to match JTS * **********************************************************************/

⌨️ 快捷键说明

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