00001 /* 00002 * ============================================================================== 00003 * Name : AknMfneCommandObserver.h 00004 * Part of : EikStd / MFNE 00005 * Interface : ?Interface_category, ?Interface_name 00006 * Description : 00007 * Version : 1.0 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 __AKNMFNECOMMANDOBSERVER 00023 #define __AKNMFNECOMMANDOBSERVER 00024 00025 #include <e32base.h> 00026 00027 // CLASS DECLARATION 00028 00038 class MAknMfneCommandObserver 00039 { 00040 public: 00041 00046 enum TMfneCommand 00047 { 00048 EMfneIncrementCurrentFieldValue, 00049 EMfneDecrementCurrentFieldValue 00050 }; 00051 00059 virtual void HandleMfneCommandL(TInt aCommand) = 0; 00060 }; 00061 00062 // __AKNMFNECOMMANDOBSERVER 00063 #endif 00064 00065 // End of File