mtpfws/mtpfw/dataproviders/dputility/inc/cmtpsvcgetreferences.h
changeset 0 d0791faffa3f
equal deleted inserted replaced
-1:000000000000 0:d0791faffa3f
       
     1 // Copyright (c) 2006-2009 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 // mw/remoteconn/mtpfws/mtpfw/dataproviders/dputility/inc/cmtpsvcgetreferences.h
       
    15 
       
    16 /**
       
    17  @file
       
    18  @internalTechnology
       
    19 */
       
    20 
       
    21 #ifndef __CMTPSVCGETREFERENCES_H__
       
    22 #define __CMTPSVCGETREFERENCES_H__
       
    23 
       
    24 #include "cmtprequestprocessor.h"
       
    25 
       
    26 class MMTPServiceDataProvider;
       
    27 class CMTPTypeArray;
       
    28 class CMTPObjectMetaData;
       
    29 
       
    30 /** 
       
    31 Defines generic file system object GetObjectReferences request processor.
       
    32 @internalTechnology
       
    33 */
       
    34 class CMTPSvcGetReferences : public CMTPRequestProcessor
       
    35 	{
       
    36 public:
       
    37 	IMPORT_C static MMTPRequestProcessor* NewL(MMTPDataProviderFramework& aFramework, 
       
    38 											MMTPConnection& aConnection, 
       
    39 											MMTPServiceDataProvider& aDataProvider);
       
    40 	IMPORT_C ~CMTPSvcGetReferences();	
       
    41 	
       
    42 private:
       
    43 	CMTPSvcGetReferences(MMTPDataProviderFramework& aFramework, MMTPConnection& aConnection, 
       
    44 						MMTPServiceDataProvider& aDataProvider);
       
    45 	
       
    46 	// From CMTPRequestProcessor
       
    47 	TMTPResponseCode CheckRequestL();
       
    48 	virtual void ServiceL();
       
    49 
       
    50 private:
       
    51 	CMTPTypeArray*               iReferences;
       
    52 	MMTPServiceDataProvider&     iDataProvider;
       
    53 	CMTPObjectMetaData*          iReceivedObjectMetaData;
       
    54 	/**
       
    55 	FLOGGER debug trace member variable.
       
    56 	*/
       
    57 	__FLOG_DECLARATION_MEMBER_MUTABLE;
       
    58 	};
       
    59 	
       
    60 #endif // __CMTPSVCGETREFERENCES_H__
       
    61