FDO .NET API Reference Feature Data Objects

mgIDataStorePropertyDictionaryImp.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\Connections\mgIConnectionPropertyDictionaryImp.h"
00022 #include "FDO\Commands\DataStore\mgIDataStorePropertyDictionary.h"
00023 
00024 class FdoIDataStorePropertyDictionary;
00025 
00026 BEGIN_NAMESPACE_OSGEO_FDO_COMMANDS_DATASTORE
00027 
00028 /// \ingroup (OSGeoFDOCommandsDataStore)
00029 /// \brief
00030 /// The IDataStorePropertyDictionaryImp class represents a concret implementation of interface 
00031 /// IDataStorePropertyDictionary. IDataStorePropertyDictionary exposes a dictionary style interface
00032 /// to the datastore properties. The properties required to create or destroy a datastore
00033 /// can be determined and their values can be set through this interface.
00034 private __gc class IDataStorePropertyDictionaryImp : public NAMESPACE_OSGEO_FDO_CONNECTIONS::IConnectionPropertyDictionaryImp, public NAMESPACE_OSGEO_FDO_COMMANDS_DATASTORE::IDataStorePropertyDictionary
00035 {
00036 public:
00037     /// \brief
00038     /// Determines if the specified property represents a file name.
00039     /// 
00040     /// \param name 
00041     /// Input the property name
00042     /// 
00043     /// \return
00044     /// Returns true if the specified property is a file name
00045     /// 
00046     System::Boolean IsPropertyFileName(System::String* name);
00047 
00048     /// \brief
00049     /// Determines if the specified property represents a path name.
00050     /// 
00051     /// \param name 
00052     /// Input the property name
00053     /// 
00054     /// \return
00055     /// Returns true if the specified property is a path name
00056     /// 
00057     System::Boolean IsPropertyFilePath(System::String* name);
00058 
00059 public private:
00060     IDataStorePropertyDictionaryImp(System::IntPtr unmanaged, System::Boolean autoDelete) : NAMESPACE_OSGEO_FDO_CONNECTIONS::IConnectionPropertyDictionaryImp(unmanaged, autoDelete)
00061     {
00062 
00063     }
00064 
00065     inline FdoIDataStorePropertyDictionary* GetImpObj();
00066 };
00067 
00068 END_NAMESPACE_OSGEO_FDO_COMMANDS_DATASTORE
00069 
00070 

Comments or suggestions? Send us feedback.