00001 /* 00002 * ============================================================================== 00003 * Name : MProEngProfileNameArray.h 00004 * Part of : Profiles Engine / Profiles Engine Wrapper 00005 * Interface : SDK, Profiles Engine Wrapper 00006 * Description : 00007 * Version : 00008 * 00009 * Copyright © 3.12 Nokia Corporation. 00010 * This material, including documentation and any related 00011 * computer programs, is protected by copyright controlled by 00012 * Nokia Corporation. All rights are reserved. Copying, 00013 * including reproducing, storing, adapting or translating, any 00014 * or all of this material requires the prior written consent of 00015 * Nokia Corporation. This material also contains confidential 00016 * information which may not be disclosed to others without the 00017 * prior written consent of Nokia Corporation. 00018 * ============================================================================== 00019 */ 00020 00021 00022 #ifndef MPROENGPROFILENAMEARRAY_H 00023 #define MPROENGPROFILENAMEARRAY_H 00024 00025 // INCLUDES 00026 #include <BAMDESCA.H> // MDesCArray 00027 00028 // FORWARD DECLARATIONS 00029 class MProEngProfileName; 00030 class MProEngProfileNameArrayExt; 00031 00032 // CLASS DECLARATION 00033 00047 class MProEngProfileNameArray : public MDesCArray 00048 { 00049 public: // New functions 00050 00058 virtual TInt ProfileId( TInt aIndex ) const = 0; 00059 00067 virtual TInt FindById( TInt aId ) const = 0; 00068 00076 virtual TInt FindByName( const TDesC& aProfileName ) const = 0; 00077 00078 private: // Extension interface 00079 00083 virtual MProEngProfileNameArrayExt* Extension() { return NULL; } 00084 00085 }; 00086 00087 // MPROENGPROFILENAMEARRAY_H 00088 #endif 00089 00090 // End of File 00091