perfsrv/memspy/Driver/Kernel/Include/SubChannels/MemSpyDriverLogChanHeapDataUser.h
changeset 55 f2950aff7424
child 54 a151135b0cf9
equal deleted inserted replaced
48:516af714ebb4 55:f2950aff7424
       
     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 *
       
    16 */
       
    17 
       
    18 #ifndef MEMSPYDRIVERLOGICALCHANHEAPDATAUSER_H
       
    19 #define MEMSPYDRIVERLOGICALCHANHEAPDATAUSER_H
       
    20 
       
    21 // User includes
       
    22 #include "MemSpyDriverLogChanHeapDataBase.h"
       
    23 
       
    24 class DMemSpyDriverLogChanHeapDataUser : public DMemSpyDriverLogChanHeapDataBase
       
    25 	{
       
    26 public:
       
    27 	DMemSpyDriverLogChanHeapDataUser( DMemSpyDriverDevice& aDevice, DThread& aThread );
       
    28 
       
    29 private: // from DMemSpyDriverLogChanBase
       
    30 	TInt Request( TInt aFunction, TAny* a1, TAny* a2 );
       
    31     TBool IsHandler( TInt aFunction ) const;
       
    32 
       
    33 private: // Channel operation handlers
       
    34     TInt GetInfoData( TMemSpyDriverInternalHeapRequestParameters* aParams );
       
    35 
       
    36 private: // Internal methods
       
    37     TInt GetFullData( TMemSpyDriverInternalHeapDataParams& aParams );
       
    38 	};
       
    39 
       
    40 
       
    41 #endif