Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
23 #include "t_dsaappdoc.h"
25 #include "t_wservconsts.h"
28 * Gets the application specific UID.
29 * @return - UID of the simpleapp application
32 TUid CDsaApplication::AppDllUid() const
38 * Creates a document object for the application
39 * @return pointer to the newly created document
42 CApaDocument* CDsaApplication::CreateDocumentL()
44 return new (ELeave) CDsaDocument(*this);
48 * Creates and returns the object of the application
49 * @return pointer to the newly created application
52 LOCAL_C CApaApplication* NewApplication()
54 return new CDsaApplication;
58 * Entry point for the application
61 GLDEF_C TInt E32Main()
63 return EikStart::RunApplication(NewApplication);