voipplugins/voipadapters/voipxmlprovisioning/provisioningappui/Inc/VoIPProvisioningApp.h
changeset 2 7b872347d83b
equal deleted inserted replaced
1:bfb1de3eac8e 2:7b872347d83b
       
     1 /*
       
     2 * Copyright (c) 2009-2010 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:  Application definition.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CVOIPPROVISIONINGAPP_H
       
    20 #define CVOIPPROVISIONINGAPP_H
       
    21 
       
    22 #ifdef _DEBUG
       
    23 #define EUNIT_FRIEND_CLASS( x ) friend class x;
       
    24 #else
       
    25 #define EUNIT_FRIEND_CLASS( x )
       
    26 #endif
       
    27 
       
    28 // INCLUDES
       
    29 #include <aknapp.h>
       
    30 
       
    31 // CONSTANTS
       
    32 const TUid KUidVoIPProvisioningAppUid = { 0x20026FE3 };
       
    33 
       
    34 // CLASS DECLARATION
       
    35 /**
       
    36 *	Application class definition
       
    37 */
       
    38 class CVoIPProvisioningApp : public CAknApplication
       
    39     {
       
    40     private: // from CApaApplication
       
    41         /**
       
    42         * Create CVoIPProvisioningDocument document object.
       
    43         */
       
    44         CApaDocument* CreateDocumentL();
       
    45 
       
    46         /**
       
    47         * Return CVoIPProvisioningApp uid.
       
    48         */
       
    49         TUid AppDllUid() const;
       
    50         
       
    51         EUNIT_FRIEND_CLASS( UT_CVoIPProvisioningApp )
       
    52     };
       
    53 
       
    54 #endif // CVOIPPROVISIONINGAPP_H
       
    55             
       
    56 // End of File
       
    57