usbuis/usbui/src/USBClassChangeUIDocument.cpp
branchRCL_3
changeset 23 25fce757be94
parent 22 5b2a402e96ac
child 24 e02eb84a14d2
equal deleted inserted replaced
22:5b2a402e96ac 23:25fce757be94
     1 /*
       
     2 * Copyright (c) 2005, 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:  This is the implementation of document class.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "USBClassChangeUIDocument.h"
       
    21 #include "USBClassChangeUIAppUi.h"
       
    22 #include "USBClassChangeUIDebug.h"
       
    23 
       
    24 // ================= MEMBER FUNCTIONS =========================================
       
    25 
       
    26 // ----------------------------------------------------------------------------
       
    27 // Destructor
       
    28 // ----------------------------------------------------------------------------
       
    29 //
       
    30 CUSBClassChangeUIDocument::~CUSBClassChangeUIDocument()
       
    31     {  
       
    32     FLOG(_L("[CUSBClassChangeUI]\t CUSBClassChangeUIDocument::Destructor (empty) completed"));
       
    33     }
       
    34 
       
    35 // ----------------------------------------------------------------------------
       
    36 // CUSBClassChangeUIDocument::CreateAppUiL()
       
    37 // Constructs CUSBClassChangeUIAppUi
       
    38 // ----------------------------------------------------------------------------
       
    39 //
       
    40 CEikAppUi* CUSBClassChangeUIDocument::CreateAppUiL()
       
    41     {
       
    42     FLOG(_L("[CUSBClassChangeUI]\t CUSBClassChangeUIDocument::CreateAppUiL()"));
       
    43     
       
    44     return new ( ELeave ) CUSBClassChangeUIAppUi;
       
    45     }
       
    46 
       
    47 // End of File