00001 // 00002 // Copyright (C) 2004-2006 Autodesk, Inc. 00003 // 00004 // This library is free software; you can redistribute it and/or 00005 // modify it under the terms of version 2.1 of the GNU Lesser 00006 // General Public License as published by the Free Software Foundation. 00007 // 00008 // This library is distributed in the hope that it will be useful, 00009 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00010 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00011 // Lesser General Public License for more details. 00012 // 00013 // You should have received a copy of the GNU Lesser General Public 00014 // License along with this library; if not, write to the Free Software 00015 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00016 00017 #ifndef SHPIEXTENDEDSELECT_H 00018 #define SHPIEXTENDEDSELECT_H 00019 00020 #include "FdoStd.h" 00021 #include "Fdo.h" 00022 #include "SHP/IScrollableFeatureReader.h" 00023 #include "SHP/ShpCompareHandler.h" 00024 00025 class ShpIExtendedSelect : public FdoIExtendedSelect 00026 { 00027 00028 public: 00029 // Expose the FdoISelect hidden functions 00030 using FdoISelect::GetOrderingOption; 00031 using FdoISelect::SetOrderingOption; 00032 // Expose the FdoIExtendedSelect hidden function 00033 using FdoIExtendedSelect::ExecuteScrollable; 00034 using FdoIExtendedSelect::GetOrderingOption; 00035 using FdoIExtendedSelect::SetOrderingOption; 00036 00037 00038 /// <summary>Set the compare handler. This method is used to override the default Shp compare handler.</summary> 00039 /// <param name="handler">The compare handle that should be derived from the ShpCompareHandler class.</param> 00040 /// <returns>Returns nothing</returns> 00041 virtual void SetCompareHandler( ShpCompareHandler* handler ) = 0; 00042 }; 00043 00044 #endif 00045