equal
deleted
inserted
replaced
|
1 // SkeletonTemplate.h |
|
2 // |
|
3 // Copyright (c) 2010 Accenture. All rights reserved. |
|
4 // |
|
5 |
|
6 #ifndef SKELETONTEMPLATE_H__ |
|
7 #define SKELETONTEMPLATE_H__ |
|
8 |
|
9 class CSkeletonTemplate : public CActive |
|
10 { |
|
11 public: |
|
12 static CSkeletonTemplate* NewLC(CConsoleBase& aConsole); |
|
13 static CSkeletonTemplate* NewL(CConsoleBase& aConsole); |
|
14 |
|
15 ~CSkeletonTemplate(); |
|
16 |
|
17 void Start(); |
|
18 |
|
19 // from CActive: |
|
20 virtual void RunL(); |
|
21 virtual void DoCancel(); |
|
22 private: |
|
23 CSkeletonTemplate(CConsoleBase& aConsole); |
|
24 void ConstructL(); |
|
25 private: |
|
26 CConsoleBase& iConsole; |
|
27 }; |
|
28 |
|
29 |
|
30 #endif //SKELETONTEMPLATE_H__ |