memspy/MemSpyClient/inc/memspyprocessdata.h
branchRCL_3
changeset 59 8ad140f3dd41
parent 49 7fdc9a71d314
equal deleted inserted replaced
49:7fdc9a71d314 59:8ad140f3dd41
     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 MEMSPYPROCESSDATA_H
       
    19 #define MEMSPYPROCESSDATA_H
       
    20 
       
    21 #include <memspy/driver/memspydriverobjectsshared.h>
       
    22 
       
    23 // TMemSpyProcess data class holds data to be sent to the UI
       
    24 class TMemSpyProcessData 
       
    25 	{	
       
    26 public:
       
    27 	//constructor & destructor
       
    28 	inline TMemSpyProcessData()
       
    29 		: iId(0), iThreadCount(0), iExitCategory(0), iExitReason(0)
       
    30 		{
       
    31 		}
       
    32 	
       
    33 public:
       
    34     TProcessId iId;        
       
    35     TFullName iName;
       
    36     TProcessPriority iPriority;
       
    37     TExitCategoryName iExitCategory;
       
    38     TInt iExitReason;
       
    39     TExitType iExitType;
       
    40     TInt iThreadCount;
       
    41     TUint32 iSID;
       
    42     TUint32 iVID;
       
    43     TBool iIsDead;
       
    44 	};
       
    45 
       
    46 #endif // MEMSPYPROCESSDATA_H