00001 /* 00002 * ============================================================================ 00003 * Name : MCustomInterface.h 00004 * Part of : AudioEnhancements/CustomInterfaceUtility/CustomInterfaceUtility 00005 * Interface : 00006 * Description : 00007 * Version : %version: 3 % 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 */ 00019 #ifndef __MCUSTOMINTERFACE_H 00020 #define __MCUSTOMINTERFACE_H 00021 00022 #include <e32std.h> 00023 00024 class MCustomInterface 00025 { 00026 public: 00027 virtual TAny* CustomInterface(TUid aInterfaceId) = 0; 00028 00029 }; 00030 00031 #endif