nettools/conntest/inc/ConnTestApp.h
changeset 0 857a3e953887
equal deleted inserted replaced
-1:000000000000 0:857a3e953887
       
     1 /*
       
     2 * Copyright (c) 2006 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: The application class for ConnTest
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef CONNTESTAPP_H
       
    19 #define CONNTESTAPP_H
       
    20 
       
    21 // INCLUDES
       
    22 #include <aknapp.h>
       
    23 
       
    24 // CONSTANTS
       
    25 // UID of the application
       
    26 const TUid KUidConnTest = { 0x101F6D2B };
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31 * CConnTestApp application class.
       
    32 * Provides factory to create concrete document object.
       
    33 * 
       
    34 */
       
    35 class CConnTestApp : public CAknApplication
       
    36     {
       
    37     
       
    38     public: // Functions from base classes
       
    39     private:
       
    40 
       
    41         /**
       
    42         * From CApaApplication, creates CConnTestDocument document object.
       
    43         * @return A pointer to the created document object.
       
    44         */
       
    45         CApaDocument* CreateDocumentL();
       
    46         
       
    47         /**
       
    48         * From CApaApplication, returns application's UID (KUidConnTest).
       
    49         * @return The value of KUidConnTest.
       
    50         */
       
    51         TUid AppDllUid() const;
       
    52     };
       
    53 
       
    54 #endif
       
    55 
       
    56 // End of File
       
    57