vpnui/vpndialogmanager/inc/vpndialogmanager.h
changeset 0 33413c0669b9
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vpnui/vpndialogmanager/inc/vpndialogmanager.h	Thu Dec 17 09:14:51 2009 +0200
@@ -0,0 +1,43 @@
+/*
+* Copyright (c) 2008 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:   Declaration of the CVpnDialogManager class.
+*
+*/
+
+
+
+#ifndef VPNDIALOGMANAGER_H
+#define VPNDIALOGMANAGER_H
+
+#include "vpnnotifierdefs.h"
+
+class MVpnDialog;
+class CVpnDialogShower;
+class MVpnNotifierCallback;
+
+class CVpnDialogManager : public CBase, public MVpnDialogManager
+    {
+public: // From CVpnDialogManagerBase
+    virtual MVpnDialog* LaunchDialogL(MVpnNotifierCallback* aNotifier, TInt aDialogId,
+                                TInt aNoteDialogId, const TDesC8& aInput);
+    virtual TInt GetNoteTextId(TInt aNoteDialogId);
+    virtual CVpnDialogShower* GetDialogShowerL();
+    virtual MVpnDialog* ShowNoteDialogL(MVpnNotifierCallback* aNotifier, TInt aNoteDialogId);
+    virtual ~CVpnDialogManager();
+    
+private:
+    CVpnDialogShower* iDialogShower;
+    };
+
+#endif  // VPNDIALOGMANAGER_H