bluetoothengine/btui/inc/BTUIApp.h
branchRCL_3
changeset 56 9386f31cc85b
parent 0 f63038272f30
equal deleted inserted replaced
55:613943a21004 56:9386f31cc85b
       
     1 /*
       
     2 * Copyright (c) 2002-2007 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 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef BTUIAPP_H
       
    20 #define BTUIAPP_H
       
    21 
       
    22 #include <aknapp.h>
       
    23 
       
    24 /**
       
    25 * CBTUIApp application class
       
    26 *
       
    27 * Provides factory to create concrete document object.
       
    28 *
       
    29 * @lib btui.exe
       
    30 * @sice S60v3.0
       
    31 */
       
    32 class CBTUIApp : public CAknApplication
       
    33     {
       
    34 
       
    35     private:
       
    36 
       
    37         /**
       
    38         * From CAknApplication Creates CBTUIDocument document object.
       
    39         * @return A pointer to the created document object.
       
    40         */
       
    41         CApaDocument* CreateDocumentL();
       
    42 
       
    43         /**
       
    44         * From CAknApplication  Returns application's UID (KUidBTUI).
       
    45         * @return The value of KUidBTUI.
       
    46         */
       
    47         TUid AppDllUid() const;
       
    48     };
       
    49 
       
    50 #endif
       
    51 
       
    52 
       
    53