FDO .NET API Reference Feature Data Objects

mgITopologyCapabilities.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 <FdoStd.h>
00022 #include <Fdo\Connections\Capabilities\ITopologyCapabilities.h>
00023 
00024 BEGIN_NAMESPACE_OSGEO_FDO_CONNECTIONS_CAPABILITIES
00025 
00026 /// \ingroup (OSGeoFDOConnectionsCapabilities)
00027 /// \interface OSGeo::FDO::Connections::Capabilities::ITopologyCapabilities
00028 /// \brief
00029 /// FDO supports properties that inform the client code about capabilities that
00030 /// may vary between providers. 
00031 /// <p><b>Note:</b> <span class="red_text">This Help topic is provided for informational use only. There is
00032 /// no interface or support provided. OSGeo reserves the right to change
00033 /// the software related to the content herein.</span>
00034 public __gc __interface ITopologyCapabilities : public System::IDisposable
00035 {
00036 public:
00037     /// True if the provider supports topology; if this is false, attempts to
00038     /// create topology-specific schema will fail.
00039     System::Boolean SupportsTopology();
00040 
00041     /// True if the provider supports TopoGeometry properties that depend on
00042     /// each other in a hierarchy; if this is false, attempting to set a
00043     /// non-NULL for TopoGeometryPropertyDefinition's "DependsOnTopoGeometry"
00044     /// property will fail.
00045     System::Boolean SupportsTopologicalHierarchy();
00046 
00047     /// True if the provider automatically (as a result of geometry assignment)
00048     /// breaks curves and inserts nodes wherever curves cross or touch, or where
00049     /// a node touches a curve.
00050     System::Boolean BreaksCurveCrossingsAutomatically();
00051 
00052     /// True if the provider supports the activation of a topology using an area
00053     /// (surface) restriction; this may involve the use of pessimistic locking.
00054     System::Boolean ActivatesTopologyByArea();
00055 
00056     /// True if the provider constrains edits of TopoGeometry properties (by
00057     /// geometry value) to those that do not change topological relationships.
00058     System::Boolean ConstrainsFeatureMovements();
00059 };
00060 
00061 END_NAMESPACE_OSGEO_FDO_CONNECTIONS_CAPABILITIES
00062 
00063 

Comments or suggestions? Send us feedback.