FDO .NET API Reference Feature Data Objects

mgNetworkLayerClass.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\mgClassDefinition.h"
00022 #include "FDO\Schema\mgClassType.h"
00023 
00024 class FdoNetworkLayerClass;
00025 
00026 BEGIN_NAMESPACE_OSGEO_FDO_SCHEMA
00027 
00028 /// \ingroup (OSGeoFDOSchema)
00029 /// \brief
00030 /// NetworkLayerClass derives from ClassDefinition and can be used to represent a network layer.
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 class NetworkLayerClass : public NAMESPACE_OSGEO_FDO_SCHEMA::ClassDefinition
00035 {
00036 public:
00037     /// \brief
00038     /// Constructs a default instance of an NetworkLayerClass.
00039     /// 
00040     NetworkLayerClass();
00041 
00042     /// \brief
00043     /// Constructs an instance of an NetworkLayerClass using the specified arguments.
00044     /// 
00045     /// \param name 
00046     /// Input name
00047     /// \param description 
00048     /// Input description
00049     /// 
00050     NetworkLayerClass(System::String* name, System::String* description);
00051 
00052     /// \brief
00053     /// Gets the concrete class type.
00054     /// 
00055     /// \return
00056     /// Returns class type
00057     /// 
00058     __property NAMESPACE_OSGEO_FDO_SCHEMA::ClassType get_ClassType();
00059 
00060     /// \brief
00061     /// Constructs a NetworkLayerClass object based on an unmanaged instance of the object
00062     /// 
00063     /// \param unmanaged 
00064     /// Input A Pointer to the unmanaged object.
00065     /// 
00066     /// \param autoDelete 
00067     /// Input Indicates if the constructed object should be automatically deleted 
00068     /// once it no longer referenced.
00069     /// 
00070     NetworkLayerClass(System::IntPtr unmanaged, System::Boolean autoDelete) : NAMESPACE_OSGEO_FDO_SCHEMA::ClassDefinition(unmanaged, autoDelete)
00071     {
00072 
00073     }
00074 
00075 public private:
00076     inline FdoNetworkLayerClass* GetImpObj();
00077 };
00078 
00079 END_NAMESPACE_OSGEO_FDO_SCHEMA
00080 
00081 

Comments or suggestions? Send us feedback.