memspy/MemSpyClient/inc/memspyprocessdata.h
changeset 17 67c6ff54ec25
child 22 a009639409f5
equal deleted inserted replaced
15:ccab7f1f8266 17:67c6ff54ec25
       
     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     TMemSpyDriverProcessInfo iInfo;
       
    42 	};
       
    43 
       
    44 #endif // MEMSPYPROCESSDATA_H