contextframework/cfwplugins/vibraactionplugin/inc/vibraactionobserver.h
changeset 0 2e3d3ce01487
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 /*
       
     2 * Copyright (c) 2006-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:  CVibraActionObserver class declaration.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef M_VIBRAACTIONOBSERVER_H
       
    21 #define M_VIBRAACTIONOBSERVER_H
       
    22 
       
    23 /**
       
    24 * Vibra action observer interface.
       
    25 *
       
    26 * @lib -
       
    27 * @since S60 4.0
       
    28 */
       
    29 NONSHARABLE_CLASS( MVibraActionObserver )
       
    30     {
       
    31     public:
       
    32     
       
    33         /**
       
    34         * Notifies that started vibra action is completed.
       
    35         * 
       
    36         * @since S60 4.0
       
    37         * @param None.
       
    38         * @return None.
       
    39         */
       
    40         virtual void VibraActionCompletedL() = 0;
       
    41     
       
    42     protected:
       
    43     
       
    44         // Deny destruction through this class
       
    45         ~MVibraActionObserver(){};
       
    46     };
       
    47     
       
    48 #endif