mtpfws/mtpfw/dataproviders/dputility/inc/cmtpgetinterdependentpropdesc.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 //
       
    15 
       
    16 /**
       
    17  @file
       
    18  @internalTechnology
       
    19 */
       
    20 
       
    21 #ifndef CMTPGETINTERDEPENDENTPROPDESC_H
       
    22 #define CMTPGETINTERDEPENDENTPROPDESC_H
       
    23 
       
    24 #include "cmtprequestprocessor.h"
       
    25 
       
    26 class CMTPTypeInterdependentPropDesc;
       
    27 
       
    28 /** 
       
    29 Defines file data provider GetInterDependentPropDesc request processor
       
    30 
       
    31 @internalTechnology
       
    32 */
       
    33 class CMTPGetInterDependentPropDesc : public CMTPRequestProcessor
       
    34 	{
       
    35 public:
       
    36 	IMPORT_C static MMTPRequestProcessor* NewL(MMTPDataProviderFramework& aFramework, MMTPConnection& aConnection);	
       
    37 	IMPORT_C ~CMTPGetInterDependentPropDesc();	
       
    38 	
       
    39 private:	
       
    40 	CMTPGetInterDependentPropDesc(MMTPDataProviderFramework& aFramework, MMTPConnection& aConnection);
       
    41 
       
    42 private:	//from CMTPRequestProcessor
       
    43 	virtual void ServiceL();
       
    44 	
       
    45 private:
       
    46 	/** Dataset to store the prop descriptions*/
       
    47     CMTPTypeInterdependentPropDesc* iDataset;
       
    48 	};
       
    49 	
       
    50 #endif
       
    51