FDO API Reference Feature Data Objects

RasterDataType.h

Go to the documentation of this file.
00001 #ifndef _RASTERDATATYPE_H_
00002 #define _RASTERDATATYPE_H_
00003 
00004 //
00005 // Copyright (C) 2004-2006  Autodesk, Inc.
00006 // 
00007 // This library is free software; you can redistribute it and/or
00008 // modify it under the terms of version 2.1 of the GNU Lesser
00009 // General Public License as published by the Free Software Foundation.
00010 // 
00011 // This library is distributed in the hope that it will be useful,
00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00014 // Lesser General Public License for more details.
00015 // 
00016 // You should have received a copy of the GNU Lesser General Public
00017 // License along with this library; if not, write to the Free Software
00018 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
00019 //
00020 #ifdef _WIN32
00021 #pragma once
00022 #endif
00023 
00024 #include <FdoStd.h>
00025 
00026 /// \brief
00027 /// The FdoRasterDataType enumeration specifies the type of data stored in the Raster Image.
00028 /// <param name="FdoRasterDataType_Unknown">
00029 /// Data is organized in an unknown or provider specific manner.
00030 /// </param>
00031 /// <param name="FdoRasterDataType_UnsignedInteger">
00032 /// Data is organized as Unsigned Integers.
00033 /// </param>
00034 /// <param name="FdoRasterDataType_Integer">
00035 /// Data is organized as Signed Integers.
00036 /// </param>
00037 /// <param name="FdoRasterDataType_Float">
00038 /// Data is organized as Floats.
00039 /// </param>
00040 /// <param name="FdoRasterDataType_Double">
00041 /// Data is organized as Doubles.
00042 /// </param>
00043 enum FdoRasterDataType
00044 {
00045     FdoRasterDataType_Unknown,
00046 
00047     FdoRasterDataType_UnsignedInteger,
00048 
00049     FdoRasterDataType_Integer,
00050 
00051     FdoRasterDataType_Float,
00052 
00053     FdoRasterDataType_Double
00054 };
00055 
00056 #endif // _RASTERDATATYPE_H_
00057 
00058 

Comments or suggestions? Send us feedback.