os/mm/devsoundextensions/effects/SrcDoppler/SourceDopplerProxy/Src/MSourceDopplerCallback.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 /*
     2 * Copyright (c) 2004 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:  interface for source doppler call back 
    15 *
    16 */
    17 
    18 
    19 
    20 
    21 #ifndef SOURCEDOPPLERCALLBACK_H
    22 #define SOURCEDOPPLERCALLBACK_H
    23 
    24 //  INCLUDES
    25 
    26 // CLASS DECLARATION
    27 
    28 
    29 /**
    30 *  Interface class to be implemented by objects that receives callbacks from Doppler Event Observer.
    31 *
    32 *  @since 3.0
    33 */
    34 class MSourceDopplerCallback
    35     {
    36     public:
    37 
    38         /**
    39         * Invoked by the Doppler Event Observer when the doppler object changes state
    40         * @since 3.0
    41         * @param aBuffer Buffer containing the doppler data
    42         */
    43         //virtual void DopplerEvent( TEfDopplerDataPckg& aDataPckg ) = 0;
    44         virtual void SourceDopplerEvent( TDesC8& aDataPckg ) = 0;
    45 
    46 
    47     };
    48 
    49 
    50 
    51 #endif      // SOURCEDOPPLERCALLBACK_H
    52 
    53 // End of File