FDO API Reference Feature Data Objects

Dimensionality.h

Go to the documentation of this file.
00001 #ifndef _DIMENSIONALITY_H_
00002 #define _DIMENSIONALITY_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 
00021 
00022 
00023 #ifdef _WIN32
00024 #pragma once
00025 #endif
00026 #ifdef __cplusplus
00027     /// \brief
00028     ///  FdoDimensionality is an enumeration to describe the presence of spatial dimensions in ordinated data.
00029     /// 
00030     /// \remarks
00031     ///  Values of this enumeration are bit-field definitions.
00032     /// They can be combined via bitwise OR or separated via bitwise AND.
00033     /// \remarks
00034     /// ///  The XY value is zero, thus indicating that all spatial data 
00035     /// is assumed to carry X and Y dimensions.
00036     /// 
00037     /// 
00038     /// \param FdoDimensionality_XY 
00039     /// X and Y dimensions are present.
00040     /// \param FdoDimensionality_Z 
00041     /// Z dimension is present.
00042     /// \param FdoDimensionality_M 
00043     /// M ('measure') dimension is present.
00044     /// 
00045 enum FdoDimensionality
00046 #else
00047     typedef enum
00048 #endif
00049 {
00050     FdoDimensionality_XY = 0,
00051     FdoDimensionality_Z  = 1,
00052     FdoDimensionality_M  = 2
00053 #ifdef __cplusplus
00054 };
00055 #else
00056 } FdoDimensionality;
00057 #endif
00058 #endif
00059 
00060 

Comments or suggestions? Send us feedback.