| 53 | The new methods added on FdoISelect will have a default implementation throwing an exception: |
| 54 | |
| 55 | {{{ |
| 56 | class FdoISelect : public FdoIBaseSelect |
| 57 | { |
| 58 | /// new added methods |
| 59 | |
| 60 | /// \brief |
| 61 | /// Gets the feature class names collection. |
| 62 | /// |
| 63 | /// \return |
| 64 | /// Returns the collection. |
| 65 | /// |
| 66 | FDO_API virtual FdoIdentifierCollection* GetFeatureClassNames() |
| 67 | { |
| 68 | throw FdoException::Create(FdoException::NLSGetMessage(FDO_NLSID(FDO_3_NOTIMPLEMENTED))); |
| 69 | } |
| 70 | |
| 71 | /// \brief |
| 72 | /// Gets the join criteria collection. |
| 73 | /// |
| 74 | /// \return |
| 75 | /// Returns the collection. |
| 76 | /// |
| 77 | FDO_API virtual FdoJoinCriteriaCollection* GetJoinCriteria() |
| 78 | { |
| 79 | throw FdoException::Create(FdoException::NLSGetMessage(FDO_NLSID(FDO_3_NOTIMPLEMENTED))); |
| 80 | } |
| 81 | } |
| 82 | }}} |
| 83 | |