FDO .NET API Reference Feature Data Objects

mgIListDataStoresImp.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\mgICommandImp.h"
00022 #include "FDO\Commands\DataStore\mgIListDataStores.h"
00023 
00024 class FdoIListDataStores;
00025 
00026 BEGIN_NAMESPACE_OSGEO_FDO_COMMANDS_DATASTORE
00027 public __gc __interface IDataStoreReader;
00028 
00029 /// \brief
00030 /// \ingroup (OSGeoFDOCommandsDataStore)
00031 /// The IListDataStoresImp class is a concrete implementation of interface IListDataStores.
00032 /// The IListDataStores interface defines the list datastores command,
00033 /// which provides a way to get a list of datastores at a particular server. 
00034 private __gc class IListDataStoresImp : public NAMESPACE_OSGEO_FDO_COMMANDS::ICommandImp, 
00035                                         public NAMESPACE_OSGEO_FDO_COMMANDS_DATASTORE::IListDataStores
00036 {
00037 public:
00038     /// \brief
00039     /// Gets the flag that indicates whether to include or
00040     /// not include Non-FDO enabled datastores in the returned list.
00041     /// These are also referred to as 'Foreign' datastores.
00042     /// 
00043     /// \return
00044     /// Returns the flag
00045     /// 
00046     __property System::Boolean get_IncludeNonFdoEnabledDatastores();
00047 
00048     /// \brief
00049     /// Sets the flag to indicate whether to include or not include
00050     /// Non-FDO enabled datastores in the returned list. These are also
00051     /// referred to as 'Foreign' datastores.
00052     /// 
00053     /// \return
00054     /// Returns nothing
00055     /// 
00056     __property System::Void set_IncludeNonFdoEnabledDatastores(System::Boolean include);
00057 
00058     /// \brief
00059     /// Executes the IListDataStores command.
00060     /// 
00061     /// \return
00062     /// Returns nothing
00063     /// 
00064     NAMESPACE_OSGEO_FDO_COMMANDS_DATASTORE::IDataStoreReader* Execute();
00065 
00066 public private:
00067     IListDataStoresImp(System::IntPtr unmanaged, System::Boolean autoDelete);
00068 
00069     inline FdoIListDataStores* GetImpObj();
00070 };
00071 
00072 END_NAMESPACE_OSGEO_FDO_COMMANDS_DATASTORE
00073 
00074 

Comments or suggestions? Send us feedback.