Changes between Version 17 and Version 18 of FDORfc17


Ignore:
Timestamp:
Apr 28, 2008, 9:32:48 AM (16 years ago)
Author:
gregboone
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FDORfc17

    v17 v18  
    3939
    4040{{{
    41 
    42 public __gc class ExpressionEngine : public OSGeo::Runtime::Disposable
     41public __gc class OSGeo::FDO::Utilities::ExpressionEngine::ExpressionEngine : public OSGeo::Runtime::Disposable
    4342{
    4443public:
     
    262261/// This helper class traverse the filter object and creates a deep copy.
    263262///
    264 public __gc class CopyFilter :
     263public __gc class OSGeo::FDO::Utilities::ExpressionEngine::CopyFilter :
    265264    public virtual OSGeo::FDO::Expression::IExpressionProcessor,
    266265    public virtual OSGeo::FDO::Filter::IFilterProcessor
     
    299298///
    300299[System::Reflection::DefaultMemberAttribute("RealTypeItem")]
    301 public __sealed __gc class FunctionCollection : public NAMESPACE_OSGEO_RUNTIME::Disposable, public System::Collections::IList
     300public __sealed __gc class OSGeo::FDO::Utilities::ExpressionEngine::FunctionCollection :
     301    public NAMESPACE_OSGEO_RUNTIME::Disposable, public System::Collections::IList
    302302{
    303303public:
     
    495495}}}
    496496
     497=== Expression Engine IFunction Interface ===
     498
     499{{{
     500/// \brief
     501/// This class defines the base interface from which all Expression Engine interfaces derive.
     502///
     503public __gc class OSGeo::FDO::Utilities::ExpressionEngine::IFunction : public NAMESPACE_OSGEO_RUNTIME::Disposable
     504{
     505public:
     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};