vpnui/vpndialogmanager/inc/vpndialogmanager.h
author hgs
Fri, 23 Jul 2010 09:34:45 +0300
changeset 35 621ec65be8ef
parent 0 33413c0669b9
permissions -rw-r--r--
201029

/*
* 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