--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/commondrm/drmutility/src/drmuihandlingdata.cpp Thu Dec 17 08:52:27 2009 +0200
@@ -0,0 +1,76 @@
+/*
+* Copyright (c) 2006-2007 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: Data class for async operations in DrmUiHandlingImpl class
+*
+*/
+
+
+// INCLUDE FILES
+#include "drmuihandlingdata.h"
+
+// ============================ MEMBER FUNCTIONS ===============================
+
+// -----------------------------------------------------------------------------
+// CDrmUiHandlingData::NewLC
+// Two-Phase constructor
+// -----------------------------------------------------------------------------
+//
+DRM::CDrmUiHandlingData* DRM::CDrmUiHandlingData::NewL()
+ {
+ DRM::CDrmUiHandlingData* self( NewLC() );
+ CleanupStack::Pop( self );
+ return self;
+ }
+
+
+// -----------------------------------------------------------------------------
+// CDrmUiHandlingData::NewLC
+// Two-Phase constructor
+// -----------------------------------------------------------------------------
+//
+DRM::CDrmUiHandlingData* DRM::CDrmUiHandlingData::NewLC()
+ {
+ DRM::CDrmUiHandlingData* self( new (ELeave) CDrmUiHandlingData );
+ CleanupStack::PushL( self );
+ self->ConstructL();
+ return self;
+ }
+
+// -----------------------------------------------------------------------------
+// Constructor
+// -----------------------------------------------------------------------------
+//
+DRM::CDrmUiHandlingData::CDrmUiHandlingData()
+ {
+ }
+
+// -----------------------------------------------------------------------------
+// Destructor
+// -----------------------------------------------------------------------------
+//
+DRM::CDrmUiHandlingData::~CDrmUiHandlingData()
+ {
+ }
+
+// -----------------------------------------------------------------------------
+// CDrmUiHandlingData::ConstructL
+// Second phase constructor
+// -----------------------------------------------------------------------------
+//
+void DRM::CDrmUiHandlingData::ConstructL()
+ {
+ }
+
+
+// End of File