00001 00002 /* 00003 * ============================================================================ 00004 * Name : akntabobserver.h 00005 * Part of : AVKON 00006 * 00007 * Description: 00008 * Interface class for tab group observer. 00009 * 00010 * 00011 * Version: 00012 * 00013 * Copyright © 2002 Nokia Corporation. 00014 * This material, including documentation and any related 00015 * computer programs, is protected by copyright controlled by 00016 * Nokia Corporation. All rights are reserved. Copying, 00017 * including reproducing, storing, adapting or translating, any 00018 * or all of this material requires the prior written consent of 00019 * Nokia Corporation. This material also contains confidential 00020 * information which may not be disclosed to others without the 00021 * prior written consent of Nokia Corporation. 00022 * ============================================================================ 00023 */ 00024 00025 #ifndef AKNTABOBSERVER_H 00026 #define AKNTABOBSERVER_H 00027 00028 #include <e32base.h> 00029 00030 class MAknTabObserver 00031 { 00032 public: 00033 00040 virtual void TabChangedL(TInt aIndex) = 0; 00041 }; 00042 00043 00044 #endif