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

📄 qgspostgisbox2d.h

📁 一个非常好的GIS开源新版本
💻 H
字号:
/***************************************************************************      qgspostgisbox3d.h  -  PostgreSQL/PostGIS "box2d" representation and                            transformation                             -------------------    begin                : Feb 1, 2005    copyright            : (C) 2005 by Brendan Morley    email                : morb at ozemail dot com dot au ***************************************************************************//*************************************************************************** *                                                                         * *   This program is free software; you can redistribute it and/or modify  * *   it under the terms of the GNU General Public License as published by  * *   the Free Software Foundation; either version 2 of the License, or     * *   (at your option) any later version.                                   * *                                                                         * ***************************************************************************//* $Id: qgspostgisbox2d.h 6415 2007-01-09 02:39:15Z wonder $ */#ifndef QGSPOSTGISBOX2D_H#define QGSPOSTGISBOX2D_H#include <string>#include "qgsrect.h"/*! * \brief   PostgreSQL/PostGIS "box3d" representation and transformation   \author  Brendan Morley   \date    March 2005      This object is designed to represent and transform the PostGIS "box2d"   data type.      \note    This class only has meaning with PostGIS 1.0 installations.            pre-1.0 only understands the box3d version               TODO     Enforce the PostGIS 1.0 prerequisite               */ class QgsPostGisBox2d : public QgsRect{public:  /*!  Constructor from a string       \param   box2d  The box2d formed as a PostGIS SQL string,                       formed by functions such as PQgetvalue   */    QgsPostGisBox2d( std::string box2d );    ~QgsPostGisBox2d();      /*!  Returns this object as a PostGIS SQL-compatible QString   */    QString stringRepAsBox2d();    private:      };#endif

⌨️ 快捷键说明

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