mtpdataproviders/mtpplaybackcontroldp/inc/mtpplaybackcontroldpprocessor.h
branchRCL_3
changeset 20 4a793f564d72
parent 19 0aa8cc770c8a
child 21 74aa6861c87d
equal deleted inserted replaced
19:0aa8cc770c8a 20:4a793f564d72
     1 // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 /**
       
    17  @file
       
    18  @internalComponent
       
    19 */
       
    20 
       
    21 #ifndef MTPPLAYBACKCONTROLDPPROCESSOR_H
       
    22 #define MTPPLAYBACKCONTROLDPPROCESSOR_H
       
    23 
       
    24 //forward declaration
       
    25 class MMTPConnection;
       
    26 class TMTPTypeRequest;
       
    27 class CMTPDataProviderPlugin;
       
    28 class MMTPDataProviderFramework;
       
    29 class MMTPRequestProcessor;
       
    30 class CMTPPlaybackControlDataProvider;
       
    31 /** 
       
    32 Defines device data provider request processor
       
    33 
       
    34 @internalTechnology
       
    35 */
       
    36 class MTPPlaybackControlDpProcessor
       
    37 	{
       
    38 public:
       
    39 	static MMTPRequestProcessor* CreateL(
       
    40 										MMTPDataProviderFramework& aFramework,
       
    41 										const TMTPTypeRequest& aRequest, 
       
    42 										MMTPConnection& aConnection,
       
    43 										CMTPPlaybackControlDataProvider& aDataProvider);	
       
    44 	};
       
    45 	
       
    46 #endif //MTPPLAYBACKCONTROLDPPROCESSOR_H
       
    47