FDO .NET API Reference Feature Data Objects

mgProviderDatastoreType.h

Go to the documentation of this file.
00001 //
00002 // Copyright (C) 2004-2006  Autodesk, Inc.
00003 // 
00004 // This library is free software; you can redistribute it and/or
00005 // modify it under the terms of version 2.1 of the GNU Lesser
00006 // General Public License as published by the Free Software Foundation.
00007 // 
00008 // This library is distributed in the hope that it will be useful,
00009 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00010 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00011 // Lesser General Public License for more details.
00012 // 
00013 // You should have received a copy of the GNU Lesser General Public
00014 // License along with this library; if not, write to the Free Software
00015 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
00016 //
00017 
00018 #pragma  once
00019 
00020 /// \cond DOXYGEN-IGNORE
00021 BEGIN_NAMESPACE_OSGEO_FDO_CONNECTIONS
00022 /// \endcond
00023 
00024 /// \ingroup (OSGeoFDOConnections)
00025 /// \brief
00026 /// The ProviderDatastoreType enumeration lists all of the concrete provider
00027 /// types supported by FDO.
00028 public __value enum ProviderDatastoreType
00029 {
00030 
00031     /// Indicates that the provider is a database-based provider.
00032     ProviderDatastoreType_DatabaseServer = FdoProviderDatastoreType_DatabaseServer,
00033 
00034     /// Indicates that the provider is a file-based provider.
00035     ProviderDatastoreType_File = FdoProviderDatastoreType_File,
00036 
00037     /// Indicates that the provider is a web-based provider.
00038     ProviderDatastoreType_WebServer = FdoProviderDatastoreType_WebServer,
00039 
00040     /// Indicates that the provider is of an unknown provider type.
00041     ProviderDatastoreType_Unknown = FdoProviderDatastoreType_Unknown
00042 
00043 };  
00044 
00045 /// \cond DOXYGEN-IGNORE
00046 END_NAMESPACE_OSGEO_FDO_CONNECTIONS
00047 /// \endcond

Comments or suggestions? Send us feedback.