usbmgmt/usbmgr/host/functiondrivers/ms/msmm/refppnotifier/inc/refppdialog.h
branchRCL_3
changeset 16 012cc2ee6408
parent 0 c9bc50fca66e
equal deleted inserted replaced
15:f92a4f87e424 16:012cc2ee6408
       
     1 /*
       
     2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 
       
    18 /**
       
    19  @file
       
    20  @internalComponent
       
    21 */
       
    22 
       
    23 #ifndef CREFPPDIALOG_H
       
    24 #define CREFPPDIALOG_H
       
    25 
       
    26 // INCLUDES
       
    27 #include <techview/eikdialg.h>
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31   The CRefPPDialog class
       
    32   This is a subclass derived from CEikDialog, it is used by notifier to display
       
    33   the message of Errors from MS mount manager.
       
    34  */
       
    35 class CRefPPDialog : public CEikDialog
       
    36 	{
       
    37 public:
       
    38 
       
    39 	~CRefPPDialog();
       
    40 	static CRefPPDialog* NewL(TBool* aDlgFlag);
       
    41 	static CRefPPDialog* NewLC(TBool* aDlgFlag);
       
    42 
       
    43 private:
       
    44 
       
    45 	CRefPPDialog(TBool* aDlgFlag);
       
    46 	void ConstructL();
       
    47 protected:
       
    48 	virtual TBool OkToExitL(TInt aButtonId);
       
    49 private:
       
    50 	TBool* iDlgFlagInOwner;
       
    51 
       
    52 	}; // class CRefPPDialog
       
    53 
       
    54 #endif // CREFPPDIALOG_H