sysanadatacapture/piprofiler/piprofiler/plugins/BUPplugin/src/TouchEventClientDll.cpp
changeset 1 3ff3fecb12fe
equal deleted inserted replaced
0:f0f2b8682603 1:3ff3fecb12fe
       
     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 
       
    19 #include "TouchEventClientDll.h"
       
    20 #include <piprofiler/ProfilerTraces.h>
       
    21 
       
    22 /*
       
    23  *	
       
    24  *	class RProfilerTouchEventAnim implementation
       
    25  * 
       
    26  */
       
    27 void RProfilerTouchEventAnim::ConstructL( const RWindow& aParent)
       
    28 {
       
    29 	LOGTEXT(_L("RProfilerTouchEventAnim::ConstructL - entry"));
       
    30 	LOGTEXT(_L("RProfilerTouchEventAnim::ConstructL - calling RAnim::Construct..."));
       
    31 	RAnim::Construct(aParent, 0, TPtrC8());
       
    32 }
       
    33 
       
    34 
       
    35 RProfilerTouchEventAnim::RProfilerTouchEventAnim( RAnimDll &aAnimDll ) :
       
    36     RAnim( aAnimDll )
       
    37 {
       
    38 }
       
    39 
       
    40 void RProfilerTouchEventAnim::Activate()
       
    41 {
       
    42 	LOGTEXT(_L("RProfilerTouchEventAnim::Activate - entry"));
       
    43 	TInt err = RAnim::CommandReply(KActivate);
       
    44 	LOGSTRING2("RProfilerTouchEventAnim::Activate - error: %d", err);
       
    45 }
       
    46 
       
    47 void RProfilerTouchEventAnim::Deactivate()
       
    48 {
       
    49 	LOGTEXT(_L("RProfilerTouchEventAnim::Deactivate - entry"));
       
    50 	TInt err = RAnim::CommandReply(KDeactivate);
       
    51 	LOGSTRING2("RProfilerTouchEventAnim::Deactivate - error: %d", err);
       
    52 }
       
    53 
       
    54 void RProfilerTouchEventAnim::Close()
       
    55 	{
       
    56 	RAnim::Close();
       
    57 	}
       
    58 
       
    59 
       
    60