memspy/MemSpyClient/inc/memspyapithreadinfoitem.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  CMemSpyProcess class 
       
    16 */
       
    17 
       
    18 #ifndef MEMSPYAPITHREADINFOITEM_H
       
    19 #define MEMSPYAPITHREADINFOITEM_H
       
    20 
       
    21 // System includes
       
    22 #include <e32base.h>
       
    23 
       
    24 class TMemSpyThreadInfoItemData;
       
    25 
       
    26 NONSHARABLE_CLASS( CMemSpyApiThreadInfoItem ) 
       
    27 	{
       
    28 public:
       
    29 	IMPORT_C ~CMemSpyApiThreadInfoItem();
       
    30 	
       
    31 	static CMemSpyApiThreadInfoItem* NewL(const TMemSpyThreadInfoItemData& aData);
       
    32 
       
    33 	static CMemSpyApiThreadInfoItem* NewLC(const TMemSpyThreadInfoItemData& aData);
       
    34 	
       
    35 public:		
       
    36 	IMPORT_C const TDesC& Caption() const;	
       
    37 	
       
    38 	IMPORT_C const TDesC& Value() const;	
       
    39 	
       
    40 private:
       
    41 	CMemSpyApiThreadInfoItem();
       
    42 	
       
    43 	void ConstructL(const TMemSpyThreadInfoItemData& aData);
       
    44 		
       
    45 private:
       
    46 	TMemSpyThreadInfoItemData *iInfoItem;
       
    47 };
       
    48 
       
    49 	
       
    50 #endif // MEMSPYAPITHREADINFOITEM_H