00001 /* 00002 * ============================================================================== 00003 * Name : EPos_CPosLmSearchCriteria.h 00004 * Part of : Mobile Location Framework/Landmarks 00005 * Interface : SDK/S60, Landmarks Search API 00006 * Description : CPosLmSearchCriteria class 00007 * Version : %version: 2 % 00008 * 00009 * Copyright © 2005-2006 Nokia. All rights reserved. 00010 * This material, including documentation and any related computer 00011 * programs, is protected by copyright controlled by Nokia. All 00012 * rights are reserved. Copying, including reproducing, storing, 00013 * adapting or translating, any or all of this material requires the 00014 * prior written consent of Nokia. This material also contains 00015 * confidential information which may not be disclosed to others 00016 * without the prior written consent of Nokia. 00017 * ============================================================================ 00018 * Template version: 4.0 00019 */ 00020 00021 #ifndef CPOSLMSEARCHCRITERIA_H 00022 #define CPOSLMSEARCHCRITERIA_H 00023 00024 #include <e32base.h> 00025 00036 class CPosLmSearchCriteria : public CBase 00037 { 00038 public: 00039 00043 enum TCriteriaType 00044 { 00045 ECriteriaArea = 0 , 00046 ECriteriaText , 00047 ECriteriaComposite , 00048 ECriteriaCategory , 00049 ECriteriaFindNearest , 00050 ECriteriaIdList , 00051 00052 ECriteriaCategoryByName = 100 00053 }; 00054 00055 public: 00056 00060 virtual ~CPosLmSearchCriteria(); 00061 00062 public: 00063 00069 IMPORT_C TCriteriaType CriteriaType() const; 00070 00071 protected: 00072 00073 // C++ constructor. 00074 CPosLmSearchCriteria( TCriteriaType aCriteriaType ); 00075 00076 private: 00077 00078 // Prohibit copy constructor 00079 CPosLmSearchCriteria( const CPosLmSearchCriteria& ); 00080 // Prohibit assigment operator 00081 CPosLmSearchCriteria& operator= ( const CPosLmSearchCriteria& ); 00082 00083 private: 00084 00085 TCriteriaType iCriteriaType; 00086 00087 }; 00088 00089 // CPOSLMSEARCHCRITERIA_H 00090 #endif 00091 00092