memspy/MemSpyClient/inc/memspykernelobjectdata.h
branchRCL_3
changeset 20 ca8a1b6995f6
equal deleted inserted replaced
19:07b41fa8d1dd 20:ca8a1b6995f6
       
     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 MEMSPYKERNELOBJECTDATA_H
       
    19 #define MEMSPYKERNELOBJECTDATA_H
       
    20 
       
    21 #include <memspy/driver/memspydriverenumerationsshared.h>
       
    22 
       
    23 // Constants
       
    24 const TInt KBufSize = 128;
       
    25 
       
    26 // TMemSpyProcess data class holds data to be sent to the UI
       
    27 class TMemSpyKernelObjectData 
       
    28 	{	
       
    29 public:
       
    30 	//constructor & destructor
       
    31 	inline TMemSpyKernelObjectData()
       
    32 		: iCount(0), iSize(0)
       
    33 		{
       
    34 		}
       
    35 	
       
    36 public:    
       
    37     TMemSpyDriverContainerType iType;
       
    38     TFullName iName;
       
    39     TInt iCount;
       
    40     TInt64 iSize;
       
    41 	};
       
    42 
       
    43 #endif // MEMSPYKERNELOBJECTDATA_H