Changes between Version 17 and Version 18 of FDORfc17
- Timestamp:
- 04/28/08 09:32:48 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FDORfc17
v17 v18 39 39 40 40 {{{ 41 42 public __gc class ExpressionEngine : public OSGeo::Runtime::Disposable 41 public __gc class OSGeo::FDO::Utilities::ExpressionEngine::ExpressionEngine : public OSGeo::Runtime::Disposable 43 42 { 44 43 public: … … 262 261 /// This helper class traverse the filter object and creates a deep copy. 263 262 /// 264 public __gc class CopyFilter :263 public __gc class OSGeo::FDO::Utilities::ExpressionEngine::CopyFilter : 265 264 public virtual OSGeo::FDO::Expression::IExpressionProcessor, 266 265 public virtual OSGeo::FDO::Filter::IFilterProcessor … … 299 298 /// 300 299 [System::Reflection::DefaultMemberAttribute("RealTypeItem")] 301 public __sealed __gc class FunctionCollection : public NAMESPACE_OSGEO_RUNTIME::Disposable, public System::Collections::IList 300 public __sealed __gc class OSGeo::FDO::Utilities::ExpressionEngine::FunctionCollection : 301 public NAMESPACE_OSGEO_RUNTIME::Disposable, public System::Collections::IList 302 302 { 303 303 public: … … 495 495 }}} 496 496 497 === Expression Engine IFunction Interface === 498 499 {{{ 500 /// \brief 501 /// This class defines the base interface from which all Expression Engine interfaces derive. 502 /// 503 public __gc class OSGeo::FDO::Utilities::ExpressionEngine::IFunction : public NAMESPACE_OSGEO_RUNTIME::Disposable 504 { 505 public: 506 /// \brief 507 /// Returns the function definition for the function. 508 /// The definition includes the list of supported signatures for the 509 /// function. 510 __property NAMESPACE_OSGEO_FDO_CONNECTIONS_CAPABILITIES::FunctionDefinition *get_FunctionDefinition (); 511 };