FDO .NET API Reference Feature Data Objects

mgNetworkNodeFeatureClass.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 FdoNetworkNodeFeatureClass;
00025 
00026 BEGIN_NAMESPACE_OSGEO_FDO_SCHEMA
00027 public __gc class AssociationPropertyDefinition;
00028 
00029 /// \ingroup (OSGeoFDOSchema)
00030 /// \brief
00031 /// NetworkNodeFeature derives from NetworkFeature and can be used to represent a 
00032 /// logical node 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 NetworkNodeFeatureClass : public NAMESPACE_OSGEO_FDO_SCHEMA::NetworkFeatureClass
00037 {
00038 public:
00039     /// \brief
00040     /// Constructs a default instance of an NetworkNodeFeatureClass.
00041     /// 
00042     NetworkNodeFeatureClass();
00043 
00044     /// \brief
00045     /// Constructs an instance of an NetworkNodeFeatureClass using the specified arguments.
00046     /// 
00047     /// \param name 
00048     /// Input name
00049     /// \param description 
00050     /// Input description
00051     /// 
00052     NetworkNodeFeatureClass(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 layer property.
00064     /// 
00065     /// \return
00066     /// Returns an association property definition
00067     /// 
00068     __property NAMESPACE_OSGEO_FDO_SCHEMA::AssociationPropertyDefinition* get_LayerProperty();
00069 
00070     /// \brief
00071     /// Sets a reference to the layer property. The associated class of the layer
00072     /// association property must be an NetworkLayer.
00073     /// 
00074     /// \param value 
00075     /// Input an association property definition
00076     /// 
00077     /// \return
00078     /// Returns nothing
00079     /// 
00080     __property System::Void set_LayerProperty(NAMESPACE_OSGEO_FDO_SCHEMA::AssociationPropertyDefinition* value);
00081 
00082     /// \brief
00083     /// Constructs a NetworkNodeFeatureClass object based on an unmanaged instance of the object
00084     /// 
00085     /// \param unmanaged 
00086     /// Input A Pointer to the unmanaged object.
00087     /// 
00088     /// \param autoDelete 
00089     /// Input Indicates if the constructed object should be automatically deleted 
00090     /// once it no longer referenced.
00091     /// 
00092     NetworkNodeFeatureClass(System::IntPtr unmanaged, System::Boolean autoDelete) : NAMESPACE_OSGEO_FDO_SCHEMA::NetworkFeatureClass(unmanaged, autoDelete)
00093     {
00094 
00095     }
00096 
00097 public private:
00098     inline FdoNetworkNodeFeatureClass* GetImpObj();
00099 };
00100 
00101 END_NAMESPACE_OSGEO_FDO_SCHEMA
00102 
00103 

Comments or suggestions? Send us feedback.