omaprovisioning/provisioning/WAPAdapter/Inc/CWPWAPMMSAdapter.h
branchRCL_3
changeset 25 b183ec05bd8c
parent 24 13d7c31c74e0
child 26 19bba8228ff0
equal deleted inserted replaced
24:13d7c31c74e0 25:b183ec05bd8c
     1 /*
       
     2 * Copyright (c) 2002 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: 
       
    15 *     Handles MMS settings in provisioning.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef CWPWAPMMSADAPTER_H
       
    21 #define CWPWAPMMSADAPTER_H
       
    22 
       
    23 // INCLUDES
       
    24 #include "CWPWAPAdapterBase.h"
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class CWPCharacteristic;
       
    28 
       
    29 // CLASS DECLARATION
       
    30 
       
    31 /**
       
    32  * CWPWAPMMSAdapter handles MMS settings.
       
    33  *
       
    34  * @lib WPWAPAdapter
       
    35  * @since 2.0
       
    36  */ 
       
    37 class CWPWAPMMSAdapter : public CWPWAPAdapterBase
       
    38     {
       
    39     public:  // Constructors and destructor
       
    40 
       
    41         /**
       
    42         * Two-phased constructor.
       
    43         */
       
    44         static CWPWAPMMSAdapter* NewL();
       
    45 
       
    46         /**
       
    47         * Destructor.
       
    48         */
       
    49         ~CWPWAPMMSAdapter();
       
    50 
       
    51     public: // from CWPWAPAdapterBase
       
    52         
       
    53         void ApplicationL( CWPCharacteristic& aCharacteristic );
       
    54         
       
    55     private:  // New functions
       
    56         /**
       
    57         * C++ default constructor.
       
    58         */
       
    59         CWPWAPMMSAdapter();
       
    60 
       
    61         /**
       
    62         * By default Symbian 2nd phase constructor is private.
       
    63         */
       
    64         void ConstructL();
       
    65 
       
    66     private:    // Data
       
    67         // Title for MMS items. Owns.
       
    68         HBufC* iTitle;
       
    69 
       
    70         // Default name for MMS items. Owns.
       
    71         HBufC* iDefaultName;
       
    72     };
       
    73 
       
    74 #endif  // CWPWAPMMSADAPTER_H
       
    75             
       
    76 // End of File