mpxplugins/viewplugins/inc/mpxequalizerview.h
changeset 0 ff3acec5bc43
equal deleted inserted replaced
-1:000000000000 0:ff3acec5bc43
       
     1 /*
       
     2 * Copyright (c) 2006 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:  MPX Equalizer view implementation
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef C_CMPXEQUALIZERVIEW_H
       
    21 #define C_CMPXEQUALIZERVIEW_H
       
    22 
       
    23 
       
    24 //  INCLUDES
       
    25 #include <e32base.h>
       
    26 
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31  *  MPX Equalizer view.
       
    32  *
       
    33  *  @lib mpxequalizerview.lib
       
    34  *  @since S60 v3.0
       
    35  */
       
    36 NONSHARABLE_CLASS( CMPXEqualizerView ) : public CBase
       
    37     {
       
    38 public:
       
    39 
       
    40     /**
       
    41      * Two-phased constructor.
       
    42      *
       
    43      * @since 3.0
       
    44      * @return Pointer to newly created object.
       
    45      */
       
    46     IMPORT_C static CMPXEqualizerView* NewL();
       
    47 
       
    48     /**
       
    49      * Destructor.
       
    50      */
       
    51     virtual ~CMPXEqualizerView();
       
    52 
       
    53     /**
       
    54      * Launch equalizer dialog.
       
    55      */
       
    56     virtual void LaunchEqualizerL() = 0;
       
    57     };
       
    58 
       
    59 #endif  // C_CMPXEQUALIZERVIEW_H
       
    60 
       
    61 // End of File