72 | | Note that for the providers where the virtual object concept cannot be used, GetISVirtual() will always return ''false''. |
| 72 | Note that for the providers where the virtual object concept cannot be used, !GetIsVirtual() will always return ''false''. |
| 73 | |
| 74 | The 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 | }}} |