1 /* |
|
2 * Copyright (c) 2005-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 "T_RAnimChild.h" |
|
20 |
|
21 T_RAnimChild::T_RAnimChild() |
|
22 { |
|
23 } |
|
24 T_RAnimChild::T_RAnimChild(RAnimDll &aDll):RAnim(aDll) |
|
25 { |
|
26 // No implementation required |
|
27 } |
|
28 |
|
29 T_RAnimChild::~T_RAnimChild() |
|
30 { |
|
31 } |
|
32 |
|
33 TInt T_RAnimChild::Construct(const RWindowBase &aDevice, TInt aType, const TDesC8 &aParams) |
|
34 { |
|
35 return RAnim::Construct(aDevice, aType, aParams); |
|
36 } |
|
37 TInt T_RAnimChild::Construct(const RWindowBase &aDevice, TInt aType, const TDesC8 &aParams, const TIpcArgs& aIpcArgs) |
|
38 { |
|
39 return RAnim::Construct(aDevice, aType, aParams, aIpcArgs); |
|
40 } |
|
41 TInt T_RAnimChild::Construct(const RWsSprite &aDevice, TInt aType, const TDesC8 &aParams) |
|
42 { |
|
43 return RAnim::Construct(aDevice, aType, aParams); |
|
44 } |
|
45 TInt T_RAnimChild::Construct(const RWsSprite &aDevice, TInt aType, const TDesC8 &aParams, const TIpcArgs& aIpcArgs) |
|
46 { |
|
47 return RAnim::Construct(aDevice, aType, aParams, aIpcArgs); |
|
48 } |
|
49 TInt T_RAnimChild::CommandReply(TInt aOpcode) |
|
50 { |
|
51 return RAnim::CommandReply(aOpcode); |
|
52 } |
|
53 TInt T_RAnimChild::CommandReply(TInt aOpcode, const TPtrC8 &aArgs) |
|
54 { |
|
55 return RAnim::CommandReply(aOpcode, aArgs); |
|
56 } |
|
57 TInt T_RAnimChild::CommandReply(TInt aOpcode, const TDesC8 &aArgs, const TIpcArgs &aIpcArgs) |
|
58 { |
|
59 return RAnim::CommandReply( aOpcode, aArgs,aIpcArgs); |
|
60 } |
|
61 void T_RAnimChild::Command(TInt aOpcode, const TPtrC8 &aArgs) |
|
62 { |
|
63 RAnim::Command( aOpcode, aArgs); |
|
64 } |
|
65 void T_RAnimChild::Command(TInt aOpcode) |
|
66 { |
|
67 RAnim::Command(aOpcode); |
|
68 } |
|
69 void T_RAnimChild::AsyncCommandReply(TRequestStatus& aRequestStatus,TInt aOpcode, const TIpcArgs& aIpcArgs) |
|
70 { |
|
71 RAnim::AsyncCommandReply( aRequestStatus, aOpcode, aIpcArgs); |
|
72 } |
|