commondrm/drmutility/src/drmuihandlingdata.cpp
changeset 0 95b198f216e5
equal deleted inserted replaced
-1:000000000000 0:95b198f216e5
       
     1 /*
       
     2 * Copyright (c) 2006-2007 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Data class for async operations in DrmUiHandlingImpl class
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "drmuihandlingdata.h"
       
    21 
       
    22 // ============================ MEMBER FUNCTIONS ===============================
       
    23 
       
    24 // -----------------------------------------------------------------------------
       
    25 // CDrmUiHandlingData::NewLC
       
    26 // Two-Phase constructor
       
    27 // -----------------------------------------------------------------------------
       
    28 //     
       
    29 DRM::CDrmUiHandlingData* DRM::CDrmUiHandlingData::NewL()
       
    30     {
       
    31     DRM::CDrmUiHandlingData* self( NewLC() );
       
    32     CleanupStack::Pop( self );
       
    33     return self;
       
    34     }
       
    35 
       
    36 
       
    37 // -----------------------------------------------------------------------------
       
    38 // CDrmUiHandlingData::NewLC
       
    39 // Two-Phase constructor
       
    40 // -----------------------------------------------------------------------------
       
    41 //     
       
    42 DRM::CDrmUiHandlingData* DRM::CDrmUiHandlingData::NewLC()
       
    43     {
       
    44     DRM::CDrmUiHandlingData* self( new (ELeave) CDrmUiHandlingData );
       
    45     CleanupStack::PushL( self );
       
    46     self->ConstructL();
       
    47     return self;    
       
    48     }
       
    49 
       
    50 // -----------------------------------------------------------------------------
       
    51 // Constructor
       
    52 // -----------------------------------------------------------------------------
       
    53 //  
       
    54 DRM::CDrmUiHandlingData::CDrmUiHandlingData()
       
    55 	{
       
    56 	}
       
    57 	
       
    58 // -----------------------------------------------------------------------------
       
    59 // Destructor
       
    60 // -----------------------------------------------------------------------------
       
    61 //  
       
    62 DRM::CDrmUiHandlingData::~CDrmUiHandlingData()
       
    63 	{
       
    64 	}
       
    65 	
       
    66 // -----------------------------------------------------------------------------
       
    67 // CDrmUiHandlingData::ConstructL
       
    68 // Second phase constructor
       
    69 // -----------------------------------------------------------------------------
       
    70 //  
       
    71 void DRM::CDrmUiHandlingData::ConstructL()
       
    72     {
       
    73     }
       
    74     
       
    75     
       
    76 //  End of File