diff -r 000000000000 -r 857a3e953887 nettools/conntest/inc/ConnTestApp.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nettools/conntest/inc/ConnTestApp.h Thu Dec 17 08:39:25 2009 +0200 @@ -0,0 +1,57 @@ +/* +* Copyright (c) 2006 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: The application class for ConnTest +* +*/ + +#ifndef CONNTESTAPP_H +#define CONNTESTAPP_H + +// INCLUDES +#include + +// CONSTANTS +// UID of the application +const TUid KUidConnTest = { 0x101F6D2B }; + +// CLASS DECLARATION + +/** +* CConnTestApp application class. +* Provides factory to create concrete document object. +* +*/ +class CConnTestApp : public CAknApplication + { + + public: // Functions from base classes + private: + + /** + * From CApaApplication, creates CConnTestDocument document object. + * @return A pointer to the created document object. + */ + CApaDocument* CreateDocumentL(); + + /** + * From CApaApplication, returns application's UID (KUidConnTest). + * @return The value of KUidConnTest. + */ + TUid AppDllUid() const; + }; + +#endif + +// End of File +