phoneuis/vmbx/inc/VmDetailsDlgDummy.h
author William Roberts <williamr@symbian.org>
Sun, 04 Apr 2010 09:45:01 +0100
branchRCL_3
changeset 18 011c89ac62cb
parent 0 5f000ab63145
permissions -rw-r--r--
Make sure ordinal 1 is NewPhoneUIStateMachineFactoryL - new fix for Bug 1614

/*
* Copyright (c) 2002 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:  Dummy details dialog for global implementation
*
*/



#ifndef CVMDETAILSDLGDUMMY_H
#define CVMDETAILSDLGDUMMY_H

//  INCLUDES
#include <e32base.h>


// CLASS DECLARATION

/**
*  Dummy details dialog for global implementation
*
*  Usage:
*  CVmDetailsDialog* dlg = CVmDetailsDialog::NewL();
*  dlg->ExecuteLD( R_VMBX_DETAIL_DIALOG );
*
*  @lib 
*  @since 2.7
*/
class CVmDetailsDialog : public CBase
    {
    public:  // Constructors and destructor
        
       /**
        * Two-phased constructor.
        */
        static CVmDetailsDialog* NewL();
        
        /**
        * Destructor.
        */
        virtual ~CVmDetailsDialog();
        
    private:
        
       /**
        * C++ default constructor.
        */
        CVmDetailsDialog();
        
    public:
    
        /**
        * Executes dummy dialog
        *
        * @param aResourceId Resource id
        * @return Returns 0
        */        
        TInt ExecuteLD( TInt aResourceId );
    };

#endif // CVMDETAILSDLGDUMMY_H