mmfenh/enhancedaudioplayerutility/S60AudioSourceFactory/inc/S60AudioSourceFactory.h
changeset 0 71ca22bcf22a
equal deleted inserted replaced
-1:000000000000 0:71ca22bcf22a
       
     1 /*
       
     2 * Copyright (c) 2005 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:  Definition of the stream source reader active object class
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef __CS60AUDIOSOURCEFACTORY_H
       
    19 #define __CS60AUDIOSOURCEFACTORY_H
       
    20 
       
    21 #include <e32std.h>
       
    22 #include <e32base.h>
       
    23 #include "MS60AudioStreamSourceObserver.h"
       
    24 
       
    25 class CS60AudioStreamSource;
       
    26 
       
    27 class CS60AudioSourceFactory : public CBase
       
    28 	{
       
    29 public:
       
    30 	IMPORT_C static CS60AudioStreamSource* CreateStreamSource(MS60AudioStreamSourceObserver& aObserver,const TDesC8& aMimeType);
       
    31 	};
       
    32 
       
    33 #endif //__CS60AUDIOSOURCEFACTORY_H
       
    34 
       
    35 //  End of File
       
    36