equal
deleted
inserted
replaced
|
1 // Copyright (c) 1999-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 #if !defined (__MENTACT_H__) |
|
17 #include "MENTACT.H" |
|
18 #endif |
|
19 |
|
20 #if !defined(__MSVCHILD_H__) |
|
21 #define __MSVCHILD_H__ |
|
22 |
|
23 //********************************** |
|
24 // CMsvChildMessages |
|
25 //********************************** |
|
26 |
|
27 class CMsvChildMessages : public CMsgActive |
|
28 /** |
|
29 @internalComponent |
|
30 @released |
|
31 */ |
|
32 { |
|
33 public: |
|
34 static CMsvChildMessages* NewL(CMsvSession& aSession, TInt aPriority); |
|
35 ~CMsvChildMessages(); |
|
36 void StartL(TMsvId aParentId, CMsvEntrySelection& aChildren, TRequestStatus& aStatus); |
|
37 // |
|
38 private: |
|
39 CMsvChildMessages(CMsvSession& aSession, TInt aPriority); |
|
40 void ConstructL(); |
|
41 void DoRunL(); |
|
42 // |
|
43 private: |
|
44 CMsvSession& iSession; |
|
45 CMsvEntrySelection* iFolders; |
|
46 CMsvEntrySelection* iSelection; |
|
47 CMsvEntrySelection* iChildren; |
|
48 CMsvEntryFilter* iFilter; |
|
49 }; |
|
50 |
|
51 #endif |