equal
deleted
inserted
replaced
|
1 // Copyright (c) 2004-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 #ifndef __CSENDASTESTSENDOPERATION_H__ |
|
17 #define __CSENDASTESTSENDOPERATION_H__ |
|
18 |
|
19 #include <msvapi.h> |
|
20 |
|
21 #ifndef SYMBIAN_ENABLE_SPLIT_HEADERS |
|
22 #include "msvconsts.h" |
|
23 #endif |
|
24 |
|
25 class CSendAsTestSendOperation : public CMsvSendOperation |
|
26 { |
|
27 public: |
|
28 static CSendAsTestSendOperation* NewL(CMsvSession& aMsvSession, |
|
29 const CMsvEntrySelection& aSelection, |
|
30 const TDesC8& aParameter, |
|
31 TRequestStatus& aRequestStatus |
|
32 ); |
|
33 virtual ~CSendAsTestSendOperation(); |
|
34 private: // methods from CMsvSendOperation |
|
35 virtual const TDesC8& TranslateProgress(const TDesC8& aProgress); |
|
36 private: |
|
37 CSendAsTestSendOperation(CMsvSession& aMsvSession, TRequestStatus& aRequestStatus); |
|
38 void ConstructL(const CMsvEntrySelection& aSelection, const TDesC8& aParameter); |
|
39 }; |
|
40 |
|
41 #endif // __CSENDASTESTSENDOPERATION_H__ |