perfsrv/memspy/MemSpyClient/inc/memspychunkdata.h
changeset 62 1c2bb2fc7c87
equal deleted inserted replaced
56:aa2539c91954 62:1c2bb2fc7c87
       
     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  TMemSpyChunkData class
       
    16 */
       
    17 
       
    18 #ifndef MEMSPYCHUNKDATA_H
       
    19 #define MEMSPYCHUNKDATA_H
       
    20 
       
    21 #include <memspy/driver/memspydriverenumerationsshared.h>
       
    22 
       
    23 // TMemSpyChunkData class holds data to be sent to the UI
       
    24 class TMemSpyChunkData 
       
    25 	{	
       
    26 public:
       
    27 	//constructor & destructor
       
    28 	inline TMemSpyChunkData()
       
    29         : iHandle(0), iBaseAddress(0), iSize(0), iMaxSize(0), iOwnerId(0), iAttributes(0)
       
    30 		{
       
    31 		}
       
    32 	
       
    33 public:
       
    34 	TFullName iName;
       
    35 	TFullName iOwnerName;
       
    36 	TUint8* iHandle;
       
    37 	TUint8* iBaseAddress;
       
    38 	TUint iSize;
       
    39 	TUint iMaxSize;
       
    40 	TUint iOwnerId;
       
    41 	TMemSpyDriverChunkType iType;
       
    42 	TInt iAttributes;
       
    43 	};
       
    44 
       
    45 
       
    46 #endif // MEMSPYCHUNKDATA_H