亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? mitab.h

?? 支持各種柵格圖像和矢量圖像讀取的庫
?? H
?? 第 1 頁 / 共 5 頁
字號:
/********************************************************************** * $Id: mitab.h,v 1.85 2006/07/25 13:24:47 dmorissette Exp $ * * Name:     mitab.h * Project:  MapInfo TAB Read/Write library * Language: C++ * Purpose:  Header file containing public definitions for the library. * Author:   Daniel Morissette, dmorissette@dmsolutions.ca * ********************************************************************** * Copyright (c) 1999-2005, Daniel Morissette * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: *  * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. *  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER  * DEALINGS IN THE SOFTWARE. ********************************************************************** * * $Log: mitab.h,v $ * Revision 1.85  2006/07/25 13:24:47  dmorissette * Updated for 1.5.1 release * * Revision 1.84  2006/07/25 13:22:58  dmorissette * Fixed initialization of MBR of TABCollection members (bug 1520) * * Revision 1.83  2006/02/16 15:13:38  dmorissette * Updated for 1.5.0 release * * Revision 1.82  2005/10/07 18:54:23  dmorissette * Ready for 1.5.0-beta1 release * * Revision 1.81  2005/10/06 23:05:08  dmorissette * TABCollection: Added automated sync'ing of OGRFeature's geometry in * SetRegion/Pline/MpointDirectly() methods (bug 1126) * * Revision 1.80  2005/10/06 19:15:30  dmorissette * Collections: added support for reading/writing pen/brush/symbol ids and * for writing collection objects to .TAB/.MAP (bug 1126) * * Revision 1.79  2005/10/04 15:44:31  dmorissette * First round of support for Collection objects. Currently supports reading * from .TAB/.MAP and writing to .MIF. Still lacks symbol support and write * support. (Based in part on patch and docs from Jim Hope, bug 1126) * * Revision 1.78  2005/05/21 03:16:01  fwarmerdam * Removed m_poFilterGeom ... should have been done yesterday with spatial * filter overhaul. * * Revision 1.77  2005/05/19 21:10:50  fwarmerdam * changed to use OGRLayers spatial filter support * * Revision 1.76  2005/05/19 15:26:59  jlacroix * Implement a method to set the StyleString of a TABFeature. * This is done via the ITABFeaturePen, Brush and Symbol classes. * * Revision 1.75  2005/04/01 16:48:41  dmorissette * Updated 1.4.0 release date * * Revision 1.74  2005/03/23 20:36:09  dmorissette * Ready for V1.4.0 * * Revision 1.73  2004/07/07 22:18:02  dmorissette * Updated 1.3.0 release date * * Revision 1.72  2004/06/30 20:22:31  dmorissette * Ready for V1.3.0 * * Revision 1.71  2003/08/07 03:20:46  dmorissette * Added mitab_c_getlibversion() to C API. (Uffe K. - bug 21) * * Revision 1.70  2003/07/24 02:47:58  daniel * Version 1.2.4 * * ... * * Revision 1.1  1999/07/12 04:18:23  daniel * Initial checkin * **********************************************************************/#ifndef _MITAB_H_INCLUDED_#define _MITAB_H_INCLUDED_#include "mitab_priv.h"#include "ogr_feature.h"#include "ogr_featurestyle.h"#include "ogrsf_frmts.h"/*--------------------------------------------------------------------- * Current version of the MITAB library... always useful! *--------------------------------------------------------------------*/#define MITAB_VERSION      "1.5.1 (2006-07-25)"#define MITAB_VERSION_INT  1005001  /* version x.y.z -> xxxyyyzzz */#ifndef PI#  define PI 3.14159265358979323846#endif#ifndef ROUND_INT#  define ROUND_INT(dX) ((int)((dX) < 0.0 ? (dX)-0.5 : (dX)+0.5 ))#endifclass TABFeature;/*--------------------------------------------------------------------- * Codes for the GetFileClass() in the IMapInfoFile-derived  classes *--------------------------------------------------------------------*/typedef enum{    TABFC_IMapInfoFile = 0,    TABFC_TABFile,    TABFC_TABView,    TABFC_TABSeamless,    TABFC_MIFFile} TABFileClass;/*--------------------------------------------------------------------- *                      class IMapInfoFile * * Virtual base class for the TABFile and MIFFile classes. * * This is the definition of the public interface methods that should * be available for any type of MapInfo dataset. *--------------------------------------------------------------------*/class IMapInfoFile : public OGRLayer{  private:  protected:     int                 m_nCurFeatureId;    TABFeature         *m_poCurFeature;    GBool               m_bBoundsSet;  public:    IMapInfoFile() ;    virtual ~IMapInfoFile();    virtual TABFileClass GetFileClass() {return TABFC_IMapInfoFile;}    virtual int Open(const char *pszFname, const char *pszAccess,                     GBool bTestOpenNoError = FALSE ) = 0;    virtual int Close() = 0;    virtual const char *GetTableName() = 0;    ///////////////    // Static method to detect file type, create an object to read that    // file and open it.    static IMapInfoFile *SmartOpen(const char *pszFname,                                   GBool bTestOpenNoError = FALSE);    ///////////////    //  OGR methods for read support    virtual void        ResetReading() = 0;    virtual int         GetFeatureCount (int bForce) = 0;    virtual OGRFeature *GetNextFeature();    virtual OGRFeature *GetFeature(long nFeatureId);    virtual OGRErr      CreateFeature(OGRFeature *poFeature);    virtual int         TestCapability( const char * pszCap ) =0;    virtual int         GetExtent(OGREnvelope *psExtent, int bForce) =0;    ///////////////    // Read access specific stuff    //    virtual int GetNextFeatureId(int nPrevId) = 0;    virtual TABFeature *GetFeatureRef(int nFeatureId) = 0;    virtual OGRFeatureDefn *GetLayerDefn() = 0;    virtual TABFieldType GetNativeFieldType(int nFieldId) = 0;    virtual int GetBounds(double &dXMin, double &dYMin,                           double &dXMax, double &dYMax,                          GBool bForce = TRUE ) = 0;        virtual OGRSpatialReference *GetSpatialRef() = 0;    virtual int GetFeatureCountByType(int &numPoints, int &numLines,                                      int &numRegions, int &numTexts,                                      GBool bForce = TRUE ) = 0;    virtual GBool IsFieldIndexed(int nFieldId) = 0;    virtual GBool IsFieldUnique(int nFieldId) = 0;    ///////////////    // Write access specific stuff    //    GBool       IsBoundsSet()            {return m_bBoundsSet;}    virtual int SetBounds(double dXMin, double dYMin,                           double dXMax, double dYMax) = 0;    virtual int SetFeatureDefn(OGRFeatureDefn *poFeatureDefn,                            TABFieldType *paeMapInfoNativeFieldTypes = NULL)=0;    virtual int AddFieldNative(const char *pszName, TABFieldType eMapInfoType,                               int nWidth=0, int nPrecision=0,                               GBool bIndexed=FALSE, GBool bUnique=FALSE) = 0;    virtual OGRErr CreateField( OGRFieldDefn *poField, int bApproxOK = TRUE );        virtual int SetSpatialRef(OGRSpatialReference *poSpatialRef) = 0;    virtual int SetFeature(TABFeature *poFeature, int nFeatureId = -1) = 0;    virtual int SetFieldIndexed(int nFieldId) = 0;    ///////////////    // semi-private.    virtual int  GetProjInfo(TABProjInfo *poPI) = 0;    virtual int  SetProjInfo(TABProjInfo *poPI) = 0;    virtual int  SetMIFCoordSys(const char *pszMIFCoordSys) = 0;#ifdef DEBUG    virtual void Dump(FILE *fpOut = NULL) = 0;#endif};/*--------------------------------------------------------------------- *                      class TABFile * * The main class for TAB datasets.  External programs should use this * class to open a TAB dataset and read/write features from/to it. * *--------------------------------------------------------------------*/class TABFile: public IMapInfoFile{  private:    char        *m_pszFname;    TABAccess   m_eAccessMode;    char        **m_papszTABFile;    int         m_nVersion;    char        *m_pszCharset;    int         *m_panIndexNo;    TABTableType m_eTableType;  // NATIVE (.DAT) or DBF    TABDATFile  *m_poDATFile;   // Attributes file    TABMAPFile  *m_poMAPFile;   // Object Geometry file    TABINDFile  *m_poINDFile;   // Attributes index file    OGRFeatureDefn *m_poDefn;    OGRSpatialReference *m_poSpatialRef;    int         bUseSpatialTraversal;    int         m_nLastFeatureId;    ///////////////    // Private Read access specific stuff    //    int         ParseTABFileFirstPass(GBool bTestOpenNoError);    int         ParseTABFileFields();     ///////////////    // Private Write access specific stuff    //    int         WriteTABFile();  public:    TABFile();    virtual ~TABFile();    virtual TABFileClass GetFileClass() {return TABFC_TABFile;}    virtual int Open(const char *pszFname, const char *pszAccess,                     GBool bTestOpenNoError = FALSE );    virtual int Close();    virtual const char *GetTableName()                            {return m_poDefn?m_poDefn->GetName():"";};    virtual void        ResetReading();    virtual int         TestCapability( const char * pszCap );    virtual int         GetFeatureCount (int bForce);    virtual int         GetExtent(OGREnvelope *psExtent, int bForce);    ///////////////    // Read access specific stuff    //    int         GetNextFeatureId_Spatial( int nPrevId );    virtual int GetNextFeatureId(int nPrevId);    virtual TABFeature *GetFeatureRef(int nFeatureId);    virtual OGRFeatureDefn *GetLayerDefn();    virtual TABFieldType GetNativeFieldType(int nFieldId);    virtual int GetBounds(double &dXMin, double &dYMin,                           double &dXMax, double &dYMax,                          GBool bForce = TRUE );        virtual OGRSpatialReference *GetSpatialRef();    virtual int GetFeatureCountByType(int &numPoints, int &numLines,                                      int &numRegions, int &numTexts,                                      GBool bForce = TRUE);    virtual GBool IsFieldIndexed(int nFieldId);    virtual GBool IsFieldUnique(int /*nFieldId*/)   {return FALSE;};    ///////////////    // Write access specific stuff    //    virtual int SetBounds(double dXMin, double dYMin,                           double dXMax, double dYMax);    virtual int SetFeatureDefn(OGRFeatureDefn *poFeatureDefn,                            TABFieldType *paeMapInfoNativeFieldTypes = NULL);    virtual int AddFieldNative(const char *pszName, TABFieldType eMapInfoType,                               int nWidth=0, int nPrecision=0,                               GBool bIndexed=FALSE, GBool bUnique=FALSE);    virtual int SetSpatialRef(OGRSpatialReference *poSpatialRef);    virtual int SetFeature(TABFeature *poFeature, int nFeatureId = -1);    virtual int SetFieldIndexed(int nFieldId);    ///////////////    // semi-private.    virtual int  GetProjInfo(TABProjInfo *poPI)            { return m_poMAPFile->GetHeaderBlock()->GetProjInfo( poPI ); }    virtual int  SetProjInfo(TABProjInfo *poPI);    virtual int  SetMIFCoordSys(const char *pszMIFCoordSys);    int         GetFieldIndexNumber(int nFieldId);    TABINDFile  *GetINDFileRef();    TABMAPFile  *GetMAPFileRef() { return m_poMAPFile; }#ifdef DEBUG    virtual void Dump(FILE *fpOut = NULL);#endif};/*--------------------------------------------------------------------- *                      class TABView * * TABView is used to handle special type of .TAB files that are * composed of a number of .TAB datasets linked through some indexed  * fields. * * NOTE: The current implementation supports only TABViews composed *       of 2 TABFiles linked through an indexed field of integer type. *       It is unclear if any other type of views could exist anyways. *--------------------------------------------------------------------*/class TABView: public IMapInfoFile{  private:

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲欧美日韩中文播放| 国产老肥熟一区二区三区| 色中色一区二区| 一区二区中文字幕在线| 99久久精品免费看国产免费软件| 国产精品美女久久久久久2018| 成人福利视频在线看| 亚洲欧洲成人精品av97| 在线看国产一区二区| 午夜电影久久久| 欧美一区二区三区人| 麻豆精品视频在线| 久久久影院官网| 99热这里都是精品| 亚洲一区二区三区在线| 这里只有精品电影| 国内精品在线播放| 国产精品午夜免费| 在线观看一区日韩| 日韩av高清在线观看| 久久综合999| 波多野结衣中文字幕一区二区三区| 亚洲色欲色欲www| 欧美精品乱人伦久久久久久| 久久疯狂做爰流白浆xx| 欧美亚洲国产怡红院影院| 成人app下载| 一本到高清视频免费精品| 岛国一区二区在线观看| 国产精品一级二级三级| 黑人精品欧美一区二区蜜桃| 美女网站色91| 免费在线一区观看| 午夜国产精品一区| 奇米综合一区二区三区精品视频| 午夜电影久久久| 国产精品二区一区二区aⅴ污介绍| 一本大道av一区二区在线播放| 色国产综合视频| 日韩成人一级片| 国产精品蜜臀av| 91精品一区二区三区在线观看| 国产在线一区二区综合免费视频| 亚洲婷婷综合色高清在线| 7777精品伊人久久久大香线蕉最新版| 国产精品一线二线三线| 亚洲自拍偷拍综合| 日韩亚洲电影在线| www.av亚洲| 热久久国产精品| 中文字幕一区二区三区蜜月| 欧美日韩高清一区二区| 国产成人精品1024| 午夜婷婷国产麻豆精品| 国产日韩三级在线| 欧美日韩亚洲综合一区二区三区| 国产精品综合久久| 亚洲福中文字幕伊人影院| 久久精品人人做人人综合| 欧美日韩精品一区二区三区蜜桃| 国产一区二区在线看| 一区二区三区四区在线免费观看| 精品奇米国产一区二区三区| 在线看一区二区| www.av精品| 国产另类ts人妖一区二区| 日韩电影免费在线观看网站| 亚洲精品久久久久久国产精华液| 久久精品人人做人人爽97| 7777精品伊人久久久大香线蕉| 97aⅴ精品视频一二三区| 欧美日本一道本| 色综合天天综合网国产成人综合天 | 日本午夜精品一区二区三区电影 | 欧美一区二区精美| 精品久久久久99| 欧美极品美女视频| 天使萌一区二区三区免费观看| 国产精品亚洲综合一区在线观看| 欧美精品一区视频| av电影在线观看一区| 国产成人亚洲综合a∨婷婷图片 | 中文字幕视频一区二区三区久| 久久激情五月婷婷| 在线亚洲免费视频| 中文字幕免费在线观看视频一区| 日韩在线卡一卡二| 99久久99久久综合| 久久天堂av综合合色蜜桃网| 日韩制服丝袜av| 欧美日韩国产综合草草| 中文字幕亚洲一区二区va在线| 国产成人综合网站| 日韩欧美另类在线| 亚洲国产综合色| 欧美三级日韩在线| 亚洲国产精品人人做人人爽| 国产精品一区在线观看你懂的| 色偷偷88欧美精品久久久| 日韩三级视频在线观看| 亚洲成人精品一区| 欧美日韩在线亚洲一区蜜芽| 自拍偷拍欧美精品| 99re热这里只有精品视频| 欧美激情一区二区三区在线| 99久久精品费精品国产一区二区 | 亚洲精品国久久99热| av网站一区二区三区| 国产精品欧美精品| 日韩精品一区二区三区三区免费| 97se亚洲国产综合自在线| 精品亚洲免费视频| 日本特黄久久久高潮| 一区二区成人在线观看| 椎名由奈av一区二区三区| 国产日韩精品一区二区浪潮av| 欧美精品123区| 久久综合色天天久久综合图片| 亚洲韩国一区二区三区| 精品福利在线导航| 欧美一区二区精品久久911| 在线日韩一区二区| 色嗨嗨av一区二区三区| av中文字幕在线不卡| 国产成人福利片| 国模娜娜一区二区三区| 日本91福利区| 蜜桃精品视频在线观看| 免费精品视频最新在线| 全国精品久久少妇| 麻豆精品在线播放| 国产综合久久久久久久久久久久| 天堂va蜜桃一区二区三区| 亚洲成av人片在www色猫咪| 国产精品电影一区二区| 国产亚洲美州欧州综合国| 欧美成人激情免费网| 777亚洲妇女| 4438x亚洲最大成人网| av一区二区久久| 99精品视频在线观看| 成人av动漫在线| 91在线视频网址| 欧美午夜精品一区二区三区| 欧美视频在线观看一区二区| 欧美午夜宅男影院| 精品伦理精品一区| 久久久久久久久久久久电影| 国产拍欧美日韩视频二区| 久久噜噜亚洲综合| 亚洲免费av在线| 亚洲欧美另类久久久精品| 制服丝袜av成人在线看| 国产又粗又猛又爽又黄91精品| 日韩精品一级二级| 欧美丰满少妇xxxxx高潮对白| 美女网站在线免费欧美精品| 偷拍日韩校园综合在线| 日韩三级电影网址| 538在线一区二区精品国产| 成人午夜在线视频| 亚洲国产乱码最新视频| 26uuu久久天堂性欧美| 一本到一区二区三区| aa级大片欧美| 国产一区二区三区美女| 日韩avvvv在线播放| 国产大陆精品国产| 国产精品正在播放| 一区二区三区四区精品在线视频| 91国产丝袜在线播放| 日本伊人午夜精品| 一区二区三区在线观看视频| 欧美精品一区视频| 亚洲国产精品国自产拍av| 91麻豆视频网站| 国产成人午夜精品影院观看视频 | 国产精品久久久久永久免费观看| 色999日韩国产欧美一区二区| 国产成人在线看| 麻豆91免费看| 日韩极品在线观看| 亚洲一区二区三区在线播放| 91在线云播放| 国产精品三级久久久久三级| 日本亚洲最大的色成网站www| 黄色成人免费在线| 色综合中文字幕国产 | 国产精品入口麻豆九色| 久久久精品影视| 国产剧情一区在线| 美国av一区二区| 久久国产尿小便嘘嘘尿| 久久电影国产免费久久电影| 青青国产91久久久久久| 99国产精品久久久| 中文字幕亚洲精品在线观看| 中文字幕亚洲综合久久菠萝蜜| 精品成人私密视频| 一区二区三区精品视频在线|