Changes between Version 9 and Version 10 of FDORfc7


Ignore:
Timestamp:
Jul 30, 2007, 7:19:59 PM (17 years ago)
Author:
barbarazoladek
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FDORfc7

    v9 v10  
    7070}}}
    7171
    72 Note that for the providers where the virtual object concept cannot be used, GetISVirtual() will always return ''false''.
     72Note that for the providers where the virtual object concept cannot be used, !GetIsVirtual() will always return ''false''.
     73
     74The below shows the changes for the Managed code.
     75
     76{{{
     77     public __gc class ClassDefinition : public NAMESPACE_OSGEO_FDO_SCHEMA::SchemaElement
     78     {
     79        public:
     80        ...
     81        /// \brief
     82        /// Gets the flag indicating if the class is based on the virtual object.
     83        ///
     84        /// \return
     85        /// Returns true if class is based on virtual object; otherwise false.
     86
     87        __property System::Boolean get_IsVirtual();
     88
     89        /// \brief
     90        /// Sets the flag indicating that the class is based on the virtual object.
     91        ///
     92        /// \parm value
     93        /// Input true or false
     94        ///
     95        /// \return
     96        /// Returns nothing
     97
     98        __property System::Void set_IsVirtual(System::Boolean value);
     99
     100     }
     101}}}
    73102
    74103== Implications ==