bintools/rcomp/tsrc/Tgb18030/Tgb18030_Application.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 const TUid KUidTgb18030 = { 0x10287187 };
       
    22 
       
    23 //             The function is called by the UI framework to ask for the
       
    24 //             application's UID. The returned value is defined by the
       
    25 //             constant KUidTgb18030 and must match the second value
       
    26 //             defined in the project definition file.
       
    27 //
       
    28 TUid CTgb18030Application::AppDllUid() const
       
    29 	{
       
    30 	return KUidTgb18030;
       
    31 	}
       
    32 
       
    33 //             This function is called by the UI framework at
       
    34 //             application start-up. It creates an instance of the
       
    35 //             document class.
       
    36 //
       
    37 CApaDocument* CTgb18030Application::CreateDocumentL()
       
    38 	{
       
    39 	return new (ELeave) CTgb18030Document(*this);
       
    40 	}