mtpfws/mtpfw/dataproviders/dputility/inc/cmtpgetobjectpropdesc.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 13 Oct 2010 15:29:02 +0300
branchRCL_3
changeset 58 142dacf7b30e
parent 48 debf68073f2f
permissions -rw-r--r--
Revision: 201035 Kit: 201041

// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//

/**
 @file
 @internalTechnology
*/

#ifndef __CMTPGETOBJECTPROPDESC_H__
#define __CMTPGETOBJECTPROPDESC_H__

#include "cmtprequestprocessor.h"

class CMTPTypeObjectPropDesc;

/** 
Defines file data provider GetObjectPropDesc request processor

@internalTechnology
*/
class CMTPGetObjectPropDesc : public CMTPRequestProcessor
	{
public:
	IMPORT_C static MMTPRequestProcessor* NewL(
									MMTPDataProviderFramework& aFramework,
									MMTPConnection& aConnection);	
	IMPORT_C ~CMTPGetObjectPropDesc();	
	
private:	
	CMTPGetObjectPropDesc(
					MMTPDataProviderFramework& aFramework,
					MMTPConnection& aConnection);
	void ConstructL();

private:	//from CMTPRequestProcessor
	virtual TMTPResponseCode CheckRequestL();
	virtual void ServiceL();	

private:
	//helper
	void ServiceStorageIdL();
	void ServiceObjectFormatL();
	void ServiceProtectionStatusL();
	void ServiceObjectSizeL();
	void ServiceAssociationTypeL();
	void ServiceAssociationDescL();
	void ServiceFileNameL();
	void ServiceDateModifiedL();
	void ServiceParentObjectL();
	void ServicePuidL();
	void ServiceNameL();
	void ServiceNonConsumableL();
	TUint16 GetPropertyGroupNumber(const TUint16 aPropCode) const;
	
private:
	CMTPTypeObjectPropDesc*	iObjectProperty;
	};
	
#endif