omaprovisioning/provisioning/ProvisioningCx/Inc/CWPCxApp.h
branchRCL_3
changeset 26 19bba8228ff0
parent 0 b497e44ab2fc
equal deleted inserted replaced
25:b183ec05bd8c 26:19bba8228ff0
       
     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 *     Provisioning dumpper application
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef CWPCXAPP_H
       
    21 #define CWPCXAPP_H
       
    22 
       
    23 // INCLUDES
       
    24 #include <aknapp.h>
       
    25 
       
    26 // CLASS DECLARATION
       
    27 
       
    28 /**
       
    29 * CProvisioningCxApp application class.
       
    30 * Provides factory to create concrete document object.
       
    31 * 
       
    32 */
       
    33 class CWPCxApp : public CAknApplication
       
    34     {
       
    35     
       
    36     private:
       
    37 
       
    38         /**
       
    39         * From CApaApplication, creates CProvisioningCxDocument document object.
       
    40         * @return A pointer to the created document object.
       
    41         */
       
    42         CApaDocument* CreateDocumentL();
       
    43         
       
    44         /**
       
    45         * From CApaApplication, returns application's UID (KUidProvisioningCx).
       
    46         * @return The value of KUidProvisioningDump.
       
    47         */
       
    48         TUid AppDllUid() const;
       
    49     };
       
    50 
       
    51 #endif
       
    52 
       
    53 // End of File
       
    54