equal
deleted
inserted
replaced
10 // Accenture - Initial contribution |
10 // Accenture - Initial contribution |
11 // |
11 // |
12 |
12 |
13 #include "hello.h" |
13 #include "hello.h" |
14 |
14 |
15 |
|
16 CCommandBase* CCmdHello::NewLC() |
15 CCommandBase* CCmdHello::NewLC() |
17 { |
16 { |
18 CCmdHello* self = new(ELeave) CCmdHello(); |
17 CCmdHello* self = new(ELeave) CCmdHello(); |
19 CleanupStack::PushL(self); |
18 CleanupStack::PushL(self); |
20 self->BaseConstructL(); |
19 self->BaseConstructL(); |
21 return self; |
20 return self; |
22 } |
|
23 |
|
24 CCmdHello::~CCmdHello() |
|
25 { |
|
26 } |
|
27 |
|
28 CCmdHello::CCmdHello() |
|
29 { |
|
30 } |
21 } |
31 |
22 |
32 const TDesC& CCmdHello::Name() const |
23 const TDesC& CCmdHello::Name() const |
33 { |
24 { |
34 _LIT(KName, "hello"); |
25 _LIT(KName, "hello"); |