FDO .NET API Reference Feature Data Objects

mgPhysicalSchemaMapping.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 
00019 #pragma once
00020 
00021 #include "FDO\Commands\Schema\mgPhysicalElementMapping.h"
00022 
00023 class FdoPhysicalSchemaMapping;
00024 
00025 BEGIN_NAMESPACE_OSGEO_FDO_COMMANDS_SCHEMA
00026 
00027 /// \ingroup (OSGeoFDOCommandsSchema)
00028 /// \brief
00029 /// PhysicalSchemaMapping is an  abstract class that is the base class of
00030 /// all Schema Override sets. Each instance contains the overrides for a 
00031 /// particular Feature Schema and FDO Provider.
00032 /// Each FDO Provider, that allows Schema Overrides, must create a sub-class of this 
00033 /// class. This sub-class must implement the overrides that are specific to the 
00034 /// provider. The Provider can also add support, for serializing to an XML document, 
00035 /// by overriding the functions inherited from XmlSerializable.
00036 public __gc class PhysicalSchemaMapping : public NAMESPACE_OSGEO_FDO_COMMANDS_SCHEMA::PhysicalElementMapping
00037 {
00038 public:
00039     /// \brief
00040     /// Gets the name of the applicable FDO provider.
00041     /// 
00042     /// \return
00043     /// Returns the name of FDO provider to which this Schema Override set 
00044     /// applies. The provider name must conform to the format:
00045     /// "[Company].[Provider].[Version]".
00046     /// 
00047     __property System::String* get_Provider();
00048 
00049 public protected:
00050     PhysicalSchemaMapping(System::IntPtr unmanaged, System::Boolean autoDelete);
00051 
00052 /// \cond DOXYGEN-IGNORE
00053 protected:
00054     PhysicalSchemaMapping(NAMESPACE_OSGEO_FDO_COMMANDS_SCHEMA::PhysicalSchemaMapping* schemaMapping, System::Boolean autoDelete);
00055 /// \endcond
00056 
00057 public private:
00058     inline FdoPhysicalSchemaMapping* GetImpObj();
00059 };
00060 
00061 END_NAMESPACE_OSGEO_FDO_COMMANDS_SCHEMA
00062 
00063 

Comments or suggestions? Send us feedback.