FDO .NET API Reference Feature Data Objects

mgNetworkLinkFeatureClass.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\Schema\mgNetworkFeatureClass.h"
00022 #include "FDO\Schema\mgClassType.h"
00023 
00024 class FdoNetworkLinkFeatureClass;
00025 
00026 BEGIN_NAMESPACE_OSGEO_FDO_SCHEMA
00027 public __gc class AssociationPropertyDefinition;
00028 
00029 /// \ingroup (OSGeoFDOSchema)
00030 /// \brief
00031 /// NetworkLinkFeature derives NetworkFeature 
00032 /// and can be used to represent a logical link feature.
00033 /// <p><b>Note:</b> <span class="red_text">This Help topic is provided for informational use only. There is
00034 /// no interface or support provided. OSGeo reserves the right to change
00035 /// the software related to the content herein.</span>
00036 public __gc class NetworkLinkFeatureClass : public NAMESPACE_OSGEO_FDO_SCHEMA::NetworkFeatureClass
00037 {
00038 public:
00039     /// \brief
00040     /// Constructs a default instance of an NetworkLinkFeatureClass.
00041     /// 
00042     NetworkLinkFeatureClass();
00043 
00044     /// \brief
00045     /// Constructs an instance of an NetworkLinkFeatureClass using the specified arguments.
00046     /// 
00047     /// \param name 
00048     /// Input name
00049     /// \param description 
00050     /// Input description
00051     /// 
00052     NetworkLinkFeatureClass(System::String* name, System::String* description);
00053 
00054     /// \brief
00055     /// Gets the concrete class type.
00056     /// 
00057     /// \return
00058     /// Returns class type
00059     /// 
00060     __property NAMESPACE_OSGEO_FDO_SCHEMA::ClassType get_ClassType();
00061 
00062     /// \brief
00063     /// Gets a reference to the start node property.
00064     /// 
00065     /// \return
00066     /// Returns an association property definition
00067     /// 
00068     __property NAMESPACE_OSGEO_FDO_SCHEMA::AssociationPropertyDefinition* get_StartNodeProperty();
00069 
00070     /// \brief
00071     /// Sets a reference to the start node property.
00072     /// 
00073     /// \param value 
00074     /// Input an association property definition
00075     /// 
00076     /// \return
00077     /// Returns nothing
00078     /// 
00079     __property System::Void set_StartNodeProperty(NAMESPACE_OSGEO_FDO_SCHEMA::AssociationPropertyDefinition* value);
00080 
00081     /// \brief
00082     /// Gets a reference to the end node property.
00083     /// 
00084     /// \return
00085     /// Returns an association property definition
00086     /// 
00087     __property NAMESPACE_OSGEO_FDO_SCHEMA::AssociationPropertyDefinition* get_EndNodeProperty();
00088 
00089     /// \brief
00090     /// Sets a reference to the end node property.
00091     /// 
00092     /// \param value 
00093     /// Input an association property definition
00094     /// 
00095     /// \return
00096     /// Returns nothing
00097     /// 
00098     __property System::Void set_EndNodeProperty(NAMESPACE_OSGEO_FDO_SCHEMA::AssociationPropertyDefinition* value);
00099 
00100     /// \brief
00101     /// Constructs a NetworkLinkFeatureClass object based on an unmanaged instance of the object
00102     /// 
00103     /// \param unmanaged 
00104     /// Input A Pointer to the unmanaged object.
00105     /// 
00106     /// \param autoDelete 
00107     /// Input Indicates if the constructed object should be automatically deleted 
00108     /// once it no longer referenced.
00109     /// 
00110     NetworkLinkFeatureClass(System::IntPtr unmanaged, System::Boolean autoDelete) : NAMESPACE_OSGEO_FDO_SCHEMA::NetworkFeatureClass(unmanaged, autoDelete)
00111     {
00112 
00113     }
00114 
00115 public private:
00116     inline FdoNetworkLinkFeatureClass* GetImpObj();
00117 };
00118 
00119 END_NAMESPACE_OSGEO_FDO_SCHEMA
00120 
00121 

Comments or suggestions? Send us feedback.