diff -r ca8a1b6995f6 -r 52e343bb8f80 memspy/MemSpyClient/inc/memspyapithread.h --- a/memspy/MemSpyClient/inc/memspyapithread.h Tue Aug 31 16:45:49 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,73 +0,0 @@ -/* -* 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 - -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