00001 /* 00002 * ============================================================================== 00003 * Name : MProEngAlertToneSeeker.h 00004 * Part of : Profiles / Profiles Engine Wrapper 00005 * Interface : SDK, Profiles Engine Wrapper 00006 * Description : 00007 * Version : 00008 * 00009 * Copyright © 2002-2004 Nokia. All rights reserved. 00010 * This material, including documentation and any related 00011 * computer programs, is protected by copyright controlled by 00012 * Nokia. All rights are reserved. Copying, including 00013 * reproducing, storing, adapting or translating, any 00014 * or all of this material requires the prior written consent of 00015 * Nokia. This material also contains confidential 00016 * information which may not be disclosed to others without the 00017 * prior written consent of Nokia. 00018 * ============================================================================== 00019 */ 00020 00021 00022 #ifndef MPROENGALERTTONESEEKER_H 00023 #define MPROENGALERTTONESEEKER_H 00024 00025 // INCLUDES 00026 #include <e32def.h> 00027 00028 // FORWARD DECLARATIONS 00029 class MProEngAlertToneSeekerExt; 00030 class MProEngAlertToneSeekerObserver; 00031 00032 // CLASS DECLARATION 00033 00041 class MProEngAlertToneSeeker 00042 { 00043 public: // New functions 00044 00055 virtual void FetchAlertToneListL( 00056 MProEngAlertToneSeekerObserver& aObserver ) = 0; 00057 00062 virtual void CancelFetch() = 0; 00063 00064 public: 00065 00069 virtual ~MProEngAlertToneSeeker() {} 00070 00071 private: // Extension interface 00072 00076 virtual MProEngAlertToneSeekerExt* Extension() { return NULL; } 00077 00078 }; 00079 00080 // MPROENGALERTTONESEEKER_H 00081 #endif 00082 00083 // End of File 00084