mtptransports/mtpusbtransport/usbdatatypes/src/tmtpusbcontrolrequestmodfunction.cpp
changeset 0 d0791faffa3f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mtptransports/mtpusbtransport/usbdatatypes/src/tmtpusbcontrolrequestmodfunction.cpp	Tue Feb 02 01:11:40 2010 +0200
@@ -0,0 +1,70 @@
+// 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
+ @internalComponent
+*/
+
+#include "mtpusbdatatypeconstants.h"
+#include "tmtpusbcontrolrequestmodfunction.h"
+    
+// Dataset element metadata.
+const TMTPUsbControlRequestMODFunction::TElementInfo TMTPUsbControlRequestMODFunction::iElementMetaData[ENumElements] = 
+    {
+        {EMTPTypeUINT32,    0,  KMTPTypeUINT32Size},    // EdwLength
+        {EMTPTypeUINT16,    4,  KMTPTypeUINT16Size},    // EbcdVersion
+        {EMTPTypeUINT16,    6,  KMTPTypeUINT16Size},    // EwIndex
+        {EMTPTypeUINT8,     8,  KMTPTypeUINT8Size},     // EbCount
+        {EMTPTypeUINT8,     9,  KMTPTypeUINT8Size},     // EReserved1 
+        {EMTPTypeUINT8,     10, KMTPTypeUINT8Size},     // EReserved2 
+        {EMTPTypeUINT8,     11, KMTPTypeUINT8Size},     // EReserved3 
+        {EMTPTypeUINT8,     12, KMTPTypeUINT8Size},     // EReserved4 
+        {EMTPTypeUINT8,     13, KMTPTypeUINT8Size},     // EReserved5 
+        {EMTPTypeUINT8,     14, KMTPTypeUINT8Size},     // EReserved6 
+        {EMTPTypeUINT8,     15, KMTPTypeUINT8Size},     // EReserved7 
+        {EMTPTypeUINT8,     16, KMTPTypeUINT8Size},     // EbFirstInterfaceNo  
+        {EMTPTypeUINT8,     17, KMTPTypeUINT8Size},     // EbInterfaceCount  
+        {EMTPTypeUINT64,    18, KMTPTypeUINT64Size},    // EcompatibleID  
+        {EMTPTypeUINT64,    26, KMTPTypeUINT64Size},    // EsubCompatibleID  
+        {EMTPTypeUINT8,     34, KMTPTypeUINT8Size},     // EReserved8 
+        {EMTPTypeUINT8,     35, KMTPTypeUINT8Size},     // EReserved9 
+        {EMTPTypeUINT8,     36, KMTPTypeUINT8Size},     // EReserved10 
+        {EMTPTypeUINT8,     37, KMTPTypeUINT8Size},     // EReserved11
+        {EMTPTypeUINT8,     38, KMTPTypeUINT8Size},     // EReserved12 
+        {EMTPTypeUINT8,     39, KMTPTypeUINT8Size},     // EReserved13 
+    }; 
+
+/** 
+Constructor
+*/
+EXPORT_C TMTPUsbControlRequestMODFunction::TMTPUsbControlRequestMODFunction() :
+    iElementInfo(iElementMetaData, ENumElements),
+    iBuffer(KSize)
+    {
+    SetBuffer(iBuffer);
+    }     
+
+EXPORT_C TUint TMTPUsbControlRequestMODFunction::Type() const
+	{
+	return EMTPUsbTypeControlRequestMODFunction;
+	}
+    
+EXPORT_C const TMTPTypeFlatBase::TElementInfo& TMTPUsbControlRequestMODFunction::ElementInfo(TInt aElementId) const
+    {
+    __ASSERT_DEBUG((aElementId < ENumElements), User::Invariant());
+    return iElementInfo[aElementId];
+    }
+