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.
24 #include "t_fpsappdoc.h"
26 #include "t_wservconsts.h" //KUidPseudoapp
30 * Gets the application specific UID.
31 * @return - UID of the simpleapp application
34 TUid CFpsApplication::AppDllUid() const
40 * Creates a document object for the application
41 * @return pointer to the newly created document
44 CApaDocument* CFpsApplication::CreateDocumentL()
46 return new (ELeave) CFpsDocument(*this);
50 * Creates and returns the object of the application
51 * @return pointer to the newly created application
54 LOCAL_C CApaApplication* NewApplication()
56 return new CFpsApplication;
60 * Entry point for the application
63 GLDEF_C TInt E32Main()
65 return EikStart::RunApplication(NewApplication);