epoc32/include/app/MVPbkStoreContactField2.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
     1 /*
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description:  An interface for the field of the store contact
    15 *
    16 */
    17 
    18 #ifndef MVPBKSTORECONTACTFIELD2_H
    19 #define MVPBKSTORECONTACTFIELD2_H
    20 
    21 // INCLUDES
    22 #include <e32base.h>
    23 
    24 // CONSTANTS
    25 
    26 // Use this UID to access store contact field extension 2.
    27 // Used as a parameter to StoreContactFieldExtension() method.
    28 const TUid KMVPbkStoreContactFieldExtension2Uid = { 2 };
    29 
    30 // FORWARD DECLARATIONS
    31 
    32 class CVPbkContactManager;
    33 
    34 // CLASS DECLARATIONS
    35 
    36 /**
    37  * This class is an extension to MVPbkStoreContactField.
    38  * See documentation of MVPbkStoreContactField from header
    39  * MVPbkStoreContactField.h
    40  *
    41  *
    42  * @see MVPbkStoreContactField
    43  *
    44  */
    45 class MVPbkStoreContactField2
    46     {
    47     public:  // Interface
    48 
    49         /**
    50          * Get the speed dial indexes of contact field.
    51          *
    52          * @param aContactManager Contact manager.
    53          * @return Array of indexes or NULL. Caller takes ownership of
    54          * the returned object.
    55          */
    56         virtual CArrayFix<TInt>* SpeedDialIndexesL() = 0;
    57 
    58     protected: // Protected destructor
    59 
    60         ~MVPbkStoreContactField2() { }
    61 
    62     };
    63 
    64 
    65 #endif  // MVPBKSTORECONTACTFIELD_H
    66 
    67 // End of file
    68