memspy/MemSpyClient/inc/memspyecomdata.h
branchRCL_3
changeset 49 7fdc9a71d314
equal deleted inserted replaced
46:e26895079d7c 49:7fdc9a71d314
       
     1 /*
       
     2 * Copyright (c) 2009 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:
       
    15 * Contains the declaration of  TMemSpyProcessData class
       
    16 */
       
    17 
       
    18 #ifndef MEMSPYECOMDATA_H
       
    19 #define MEMSPYECOMDATA_H
       
    20 
       
    21 // TMemSpyProcess data class holds data to be sent to the UI
       
    22 class TMemSpyEComCategoryData 
       
    23 	{	
       
    24 public:
       
    25 	//constructor & destructor
       
    26 	inline TMemSpyEComCategoryData ()
       
    27 		: iInterfaceCount(0)
       
    28 		{
       
    29 		}
       
    30 	
       
    31 public:
       
    32     TUid iId;        
       
    33     TFullName iName;
       
    34     TInt iInterfaceCount;
       
    35 	};
       
    36 
       
    37 class TMemSpyEComInterfaceData 
       
    38     {   
       
    39 public:
       
    40     //constructor & destructor
       
    41     inline TMemSpyEComInterfaceData ()
       
    42         : iImplementationCount(0)
       
    43         {
       
    44         }
       
    45     
       
    46 public:
       
    47     TUid iId;
       
    48     TUid iCategoryId;
       
    49     TFullName iName;
       
    50     TInt iImplementationCount;
       
    51     };
       
    52 
       
    53 class TMemSpyEComImplementationData 
       
    54     {   
       
    55 public:
       
    56     TUid iImplementationUid;
       
    57     TFullName iName;
       
    58     TInt iVersion;
       
    59     TFullName iDataType;
       
    60     TFullName iOpaqueData;
       
    61     TDriveUnit iDrive;
       
    62     TBool iRomOnly;
       
    63     TBool iRomBased;
       
    64     TVendorId iVendorId;    
       
    65     TBool iDisabled;
       
    66     };
       
    67 
       
    68 #endif // MEMSPYECOMDATA_H