mtpfws/mtpfw/datatypes/src/tmtptyperesponse.cpp
changeset 0 d0791faffa3f
child 4 60a94a45d437
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mtpfws/mtpfw/datatypes/src/tmtptyperesponse.cpp	Tue Feb 02 01:11:40 2010 +0200
@@ -0,0 +1,63 @@
+// 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
+ @publishedPartner
+*/
+
+#include <mtp/mtpdatatypeconstants.h>
+#include <mtp/tmtptyperesponse.h>
+
+// Dataset element metadata.
+const TMTPTypeResponse::TElementInfo TMTPTypeResponse::iElementMetaData[ENumElements] = 
+    {
+        {EMTPTypeUINT16,    0,  KMTPTypeUINT16Size},    // EResponseCode
+        {EMTPTypeUINT32,    2,  KMTPTypeUINT32Size},    // EResponseSessionID
+        {EMTPTypeUINT32,    6,  KMTPTypeUINT32Size},    // EResponseTransactionID
+        {EMTPTypeUINT32,    10, KMTPTypeUINT32Size},    // EResponseParameter1
+        {EMTPTypeUINT32,    14, KMTPTypeUINT32Size},    // EResponseParameter2
+        {EMTPTypeUINT32,    18, KMTPTypeUINT32Size},    // EResponseParameter3
+        {EMTPTypeUINT32,    22, KMTPTypeUINT32Size},    // EResponseParameter4
+        {EMTPTypeUINT32,    26, KMTPTypeUINT32Size},    // EResponseParameter5
+    };
+
+/**
+Constructor.
+*/
+EXPORT_C TMTPTypeResponse::TMTPTypeResponse() :
+    iElementInfo(iElementMetaData, ENumElements),
+    iBuffer(KSize)
+    {
+    SetBuffer(iBuffer);
+    }
+
+EXPORT_C TMTPTypeResponse::TMTPTypeResponse(const TMTPTypeResponse& aResponse):
+    iElementInfo(iElementMetaData, ENumElements),
+    iBuffer(KSize)
+    {
+    iBuffer = aResponse.iBuffer;
+    SetBuffer(iBuffer);
+    }
+
+EXPORT_C TUint TMTPTypeResponse::Type() const
+    {
+    return EMTPTypeResponseDataset;
+    }
+    
+EXPORT_C const TMTPTypeFlatBase::TElementInfo& TMTPTypeResponse::ElementInfo(TInt aElementId) const
+    {
+    return iElementInfo[aElementId];
+    }