FDO API Reference | Feature Data Objects |
00001 #ifndef _FUNCTIONCATEGORYTYPE_H_ 00002 #define _FUNCTIONCATEGORYTYPE_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 #ifdef _WIN32 00022 #pragma once 00023 #endif 00024 00025 /// \ingroup (enums) 00026 /// \brief 00027 /// The FdoFunctionCategoryType enumeration lists all types a function may 00028 /// be classified in. 00029 00030 enum FdoFunctionCategoryType 00031 { 00032 00033 /// Represents the identifier used to categorize aggregate functions. 00034 FdoFunctionCategoryType_Aggregate, 00035 00036 /// Represents the identifier used to categorize conversion functions. 00037 FdoFunctionCategoryType_Conversion, 00038 00039 /// Represents the identifier used to categorize custom functions. 00040 FdoFunctionCategoryType_Custom, 00041 00042 /// Represents the identifier used to categorize date functions. 00043 FdoFunctionCategoryType_Date, 00044 00045 /// Represents the identifier used to categorize geometry functions. 00046 FdoFunctionCategoryType_Geometry, 00047 00048 /// Represents the identifier used to categorize mathematic functions. 00049 FdoFunctionCategoryType_Math, 00050 00051 /// Represents the identifier used to categorize numeric functions. 00052 FdoFunctionCategoryType_Numeric, 00053 00054 /// Represents the identifier used to categorize string functions. 00055 FdoFunctionCategoryType_String, 00056 00057 /// Represents the identifier used to categorize unspecified functions. 00058 FdoFunctionCategoryType_Unspecified, 00059 00060 }; // FdoFunctionCategoryType 00061 00062 #endif 00063
Comments or suggestions? Send us feedback. |