bintools/rcomp/tsrc/Tgb18030/Tgb18030_Document.cpp
changeset 2 39c28ec933dd
equal deleted inserted replaced
1:820b22e13ff1 2:39c28ec933dd
       
     1 /*
       
     2 * Copyright (c) 1997-2009 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 the License "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 #include "Tgb18030.h"
       
    20 
       
    21 //             The constructor of the document class just passes the
       
    22 //             supplied reference to the constructor initialisation list.
       
    23 //             The document has no real work to do in this application.
       
    24 //
       
    25 CTgb18030Document::CTgb18030Document(CEikApplication& aApp)
       
    26 		: CEikDocument(aApp)
       
    27 	{
       
    28 	}
       
    29 
       
    30 
       
    31 //             This is called by the UI framework as soon as the 
       
    32 //             document has been created. It creates an instance
       
    33 //             of the ApplicationUI. The Application UI class is
       
    34 //             an instance of a CEikAppUi derived class.
       
    35 //
       
    36 CEikAppUi* CTgb18030Document::CreateAppUiL()
       
    37 	{
       
    38     return new(ELeave) CTgb18030AppUi;
       
    39 	}