Changes between Version 19 and Version 20 of FDORfc17


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

--

Legend:

Unmodified
Added
Removed
Modified
  • FDORfc17

    v19 v20  
    309309    /// Input A Pointer to the parent schema object of the collection
    310310    ///
    311     FunctionCollection(NAMESPACE_OSGEO_FDO_SCHEMA::SchemaElement* parent);
     311    FunctionCollection(OSGeo::FDO::Schema::SchemaElement* parent);
    312312
    313313    /// \brief
     
    321321    /// once it no longer referenced.
    322322    ///
    323     FunctionCollection(System::IntPtr unmanaged, System::Boolean autoDelete) : NAMESPACE_OSGEO_RUNTIME::Disposable(unmanaged, autoDelete)
    324     {
    325     }
     323    FunctionCollection(System::IntPtr unmanaged, System::Boolean autoDelete);
    326324
    327325    /// \brief
     
    342340
    343341    /// \brief
    344     /// Removes the index-th OSGEO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction from this collection.
     342    /// Removes the index-th IFunction from this collection.
    345343    ///
    346344    /// \param index
     
    363361    /// Returns the position into which the new element was inserted.
    364362    ///
    365     System::Int32 Add(OSGEO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* value);
     363    System::Int32 Add(OSGeo::FDO::Utilities::ExpressionEngine::IFunction* value);
    366364
    367365    /// \brief
     
    374372    /// The index of value if found in the collection; otherwise, -1.
    375373    ///
    376     System::Int32 IndexOf(OSGEO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* value);
     374    System::Int32 IndexOf(OSGeo::FDO::Utilities::ExpressionEngine::IFunction* value);
    377375
    378376    /// \brief
     
    395393    /// Input the IFunction object to insert.
    396394    ///
    397     System::Void Insert(System::Int32 index, OSGEO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* value);
     395    System::Void Insert(System::Int32 index, OSGeo::FDO::Utilities::ExpressionEngine::IFunction* value);
    398396
    399397    /// \brief
     
    403401    /// Input the IFunction object to remove from the collection.
    404402    ///
    405     System::Void Remove(OSGEO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* value);
     403    System::Void Remove(OSGeo::FDO::Utilities::ExpressionEngine::IFunction* value);
    406404
    407405    /// \brief
     
    414412    /// Returns true if the value is found in the collection; otherwise, false.
    415413    ///
    416     System::Boolean Contains(OSGEO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* value);
     414    System::Boolean Contains(OSGeo::FDO::Utilities::ExpressionEngine::IFunction* value);
    417415
    418416    /// \brief
     
    436434    /// Input an integer that represents the index in array at which copying begins.
    437435    ///
    438     System::Void CopyTo(OSGEO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* array[],System::Int32 startAt);
     436    System::Void CopyTo(OSGeo::FDO::Utilities::ExpressionEngine::IFunction* array[],System::Int32 startAt);
    439437
    440438    /// \brief
     
    448446    /// Throws an instance of Exception if the index is out of range or an error occurs.
    449447    ///
    450     __property OSGEO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* get_RealTypeItem(System::Int32 index);
     448    __property OSGeo::FDO::Utilities::ExpressionEngine::IFunction* get_RealTypeItem(System::Int32 index);
    451449
    452450    /// \brief
     
    459457    /// Returns an instance of a the collected item.
    460458    ///
    461     __property OSGEO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* get_RealTypeItem(System::String* index);
     459    __property OSGeo::FDO::Utilities::ExpressionEngine::IFunction* get_RealTypeItem(System::String* index);
    462460
    463461    /// \brief
     
    470468    /// Input the value of the item
    471469    ///
    472     __property System::Void  set_RealTypeItem(System::Int32 index, OSGEO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* value);
     470    __property System::Void  set_RealTypeItem(System::Int32 index, OSGeo::FDO::Utilities::ExpressionEngine::IFunction* value);
    473471
    474472    /// \brief
     
    481479    /// Returns the item at the specified index
    482480    ///
    483     __property OSGEO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* get_Item(System::Int32 index);
     481    __property OSGeo::FDO::Utilities::ExpressionEngine::IFunction* get_Item(System::Int32 index);
    484482
    485483    /// \brief
     
    492490    /// Input the value of the item
    493491    ///
    494     __property System::Void  set_Item(System::Int32 index, OSGEO_FDO_UTILITIES_EXPRESSIONENGINE::IFunction* value);
     492    __property System::Void  set_Item(System::Int32 index, OSGeo::FDO::Utilities::ExpressionEngine::IFunction* value);
    495493};
    496494}}}
     
    509507    /// The definition includes the list of supported signatures for the
    510508    /// function.
    511     __property NAMESPACE_OSGEO_FDO_CONNECTIONS_CAPABILITIES::FunctionDefinition *get_FunctionDefinition ();
     509    __property OSGeo::FDO::Connections::Capabilities::FunctionDefinition *get_FunctionDefinition ();
    512510};