diff -r 000000000000 -r 33413c0669b9 vpnui/vpnecomnotifier/inc/vpndialogmanagerecomstub.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vpnui/vpnecomnotifier/inc/vpndialogmanagerecomstub.h Thu Dec 17 09:14:51 2009 +0200 @@ -0,0 +1,45 @@ +/* +* Copyright (c) 2007 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: VPN Ecom Notifier's dialog manager stub definition file +* +*/ + + + + +#ifndef __VPNDIALOGMANAGERECOMSTUB_H__ +#define __VPNDIALOGMANAGERECOMSTUB_H__ + +#include + +class CVpnNotifier; +class MVpnDialog; +class MVpnDialogManager; +class MVpnNotifierCallback; + +class CVpnDialogManagerEcomStub : public CBase + { +public: // From CVpnDialogManagerBase + MVpnDialog* LaunchDialogL(MVpnNotifierCallback* aNotifier, TInt aDialogId, + TInt aNoteDialogId, const TDesC8& aInput); + TInt GetNoteTextId(TInt aNoteDialogId); + MVpnDialog* ShowNoteDialogL(MVpnNotifierCallback* aNotifier, TInt aNoteDialogId); + ~CVpnDialogManagerEcomStub(); + void SetDialogManager(MVpnDialogManager* aDialogManager); + +private: + MVpnDialogManager* iDialogManager; // ref, not owned by this component + }; + +#endif // __ACUDIALOGMANAGER_H__