FDO .NET API Reference Feature Data Objects

mgIExpressionProcessorImp.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\Expression\mgIExpressionProcessor.h"
00022 
00023 class FdoIExpressionProcessor;
00024 
00025 BEGIN_NAMESPACE_OSGEO_FDO_EXPRESSION
00026 
00027 /// \ingroup (OSGeoFDOExpression)
00028 /// \brief
00029 /// The IExpressionProcessor interface can be used to process the nodes in an
00030 /// Expression tree. It declares an process operation for each concrete class in
00031 /// the Expression hierarchy. Providers or client applications can create
00032 /// classes that realize this interface to do something meaningful with an
00033 /// Expression hierarchy. For example, an RDBMS feature provider implements a
00034 /// processor class to convert an Expression hierarchy to the SQL equivalent
00035 /// syntax.
00036 private __gc class IExpressionProcessorImp  : public NAMESPACE_OSGEO_RUNTIME::Disposable, public NAMESPACE_OSGEO_FDO_EXPRESSION::IExpressionProcessor
00037 {
00038 public:
00039     /// \brief
00040     /// Constructs a IExpressionProcessorImp object based on an unmanaged instance of the object
00041     /// 
00042     /// \param unmanaged 
00043     /// Input A Pointer to the unmanaged object.
00044     /// 
00045     /// \param autoDelete 
00046     /// Input Indicates if the constructed object should be automatically deleted 
00047     /// once it no longer referenced.
00048     /// 
00049     IExpressionProcessorImp(System::IntPtr unmanaged, System::Boolean autoDelete);
00050 
00051 /// \cond DOXYGEN-IGNORE
00052 protected:
00053     System::Void ReleaseUnmanagedObject();
00054 /// \endcond
00055 
00056 public private:
00057     inline FdoIExpressionProcessor* GetImpObj();
00058 };
00059 
00060 END_NAMESPACE_OSGEO_FDO_EXPRESSION
00061 
00062 

Comments or suggestions? Send us feedback.