memspy/MemSpyClient/inc/memspyapithread.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 15 Sep 2010 13:53:27 +0300
branchRCL_3
changeset 49 7fdc9a71d314
permissions -rw-r--r--
Revision: 201035 Kit: 201036

/*
* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). 
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
* Contains the declaration of  CMemSpyProcessWrapper class and TMemSpyProcess data class
*/

#ifndef MEMSPYAPITHREAD_H
#define MEMSPYAPITHREAD_H

// System includes
#include <e32base.h>

class TMemSpyThreadData;

NONSHARABLE_CLASS( CMemSpyApiThread ) {

public:
	IMPORT_C ~CMemSpyApiThread();
	
	static CMemSpyApiThread* NewL(const TMemSpyThreadData& aData);

	static CMemSpyApiThread* NewLC(const TMemSpyThreadData& aData);

public:
	IMPORT_C TThreadId Id() const;
	IMPORT_C TProcessId ProcessId() const;
	
	IMPORT_C const TDesC& Name() const;
		
	IMPORT_C TInt SID() const;
	
	IMPORT_C TInt VID() const;
	
	IMPORT_C TThreadPriority ThreadPriority() const;
	
	IMPORT_C TProcessPriority ProcessPriority() const;
	
	IMPORT_C TInt RequestCount() const;
	
	IMPORT_C TInt ThreadHandles() const;
	
	IMPORT_C TInt ProcessHandles() const;
	
	IMPORT_C TInt ThreadNumberUsing() const;
	
	IMPORT_C TInt ProcessNumberUsing() const;
	
	IMPORT_C TInt Attributes() const;
	
	IMPORT_C TInt CpuUse() const;
	
	IMPORT_C TExitType ExitType() const;
	
private:
	CMemSpyApiThread();	
	
	void ConstructL(const TMemSpyThreadData& aData);
private:
	TMemSpyThreadData* iThreadData;
};

#endif