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 /// \ingroup (enums)
00027 /// \brief
00028 /// The FdoRasterDataType enumeration specifies the type of data stored in the Raster Image.
00029 enum FdoRasterDataType
00030 {
00031     /// Data is organized in an unknown or provider specific manner.
00032     FdoRasterDataType_Unknown,
00033 
00034     /// Data is organized as Unsigned Integers.
00035     FdoRasterDataType_UnsignedInteger,
00036 
00037     /// Data is organized as Signed Integers.
00038     FdoRasterDataType_Integer,
00039 
00040     /// Data is organized as Floats.
00041     FdoRasterDataType_Float,
00042 
00043     /// Data is organized as Doubles.
00044     FdoRasterDataType_Double
00045 };
00046 
00047 #endif // _RASTERDATATYPE_H_
00048 
00049 

Comments or suggestions? Send us feedback.