Changes between Version 5 and Version 6 of FDORfc17
- Timestamp:
- 03/24/08 12:05:07 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FDORfc17
v5 v6 32 32 The following shows the proposed additions for the Managed API 33 33 34 === Namespace Additions === 35 36 {{{ 37 // Utilities 38 #define BEGIN_NAMESPACE_OSGEO_FDO_UTILITIES namespace OSGeo { namespace FDO { namespace Utilities { 39 #define BEGIN_NAMESPACE_OSGEO_FDO_UTILITIES }}}} 40 41 // Expression Engine 42 #define BEGIN_NAMESPACE_OSGEO_FDO_UTILITIES_EXPRESSIONENGINE namespace OSGeo { namespace FDO { namespace Utilities { namespace ExpressionEngine { 43 #define END_NAMESPACE_ASGEO_FDO_UTILITIES_EXPRESSIONENGINE }}}}} 44 45 // Utilities 46 #define NAMESPACE_OSGEO_FDO_UTILITIES OSGeo::FDO::Utilities 47 #define NAMESPACE_OSGEO_FDO_UTILITIES_EXPRESSIONENGINE OSGeo::FDO::Utilities::ExpressionEngine 48 }}} 49 34 50 === Expression Engine === 35 51 … … 260 276 // 261 277 // This helper class traverse the filter object and creates a deep copy. 262 public __gc class ExpressionEngineCopyFilter :278 public __gc class CopyFilter : 263 279 public virtual OSGEO_FDO_EXPRESSION::IExpressionProcessor, 264 280 public virtual OSGEO_FDO_FILTER::IFilterProcessor … … 268 284 /// Constructs a new instance of ExpressionEngineCopyFilter 269 285 /// 270 ExpressionEngineCopyFilter();286 CopyFilter(); 271 287 272 288 static OSGEO_FDO_FILTER::Filter* Copy( OSGEO_FDO_FILTER::Filter *filter );