equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 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: authrequest |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef CSTUBSUPLAUTHREQUEST_H_ |
|
20 #define CSTUBSUPLAUTHREQUEST_H_ |
|
21 |
|
22 #include <e32base.h> |
|
23 #include <e32def.h> |
|
24 #include <e32cmn.h> |
|
25 #include "epos_comasuplasnbase.h" |
|
26 #include "epos_comasuplasnmessagebase.h" |
|
27 #include "epos_comasuplauthrequest.h" |
|
28 #include "asnimplementationbase.h" |
|
29 |
|
30 class CStubSuplAuthRequest : public COMASuplAuthRequest |
|
31 { |
|
32 public: |
|
33 /** |
|
34 * Factory function that instantiates a new object of CStubSuplAuthRequest |
|
35 * |
|
36 */ |
|
37 IMPORT_C static CStubSuplAuthRequest* NewL(); |
|
38 /** |
|
39 * Destructor |
|
40 */ |
|
41 IMPORT_C ~CStubSuplAuthRequest(); |
|
42 /** |
|
43 * Method for Encoding... |
|
44 */ |
|
45 virtual HBufC8* EncodeL(TInt& aErrorCode); |
|
46 private: |
|
47 /** |
|
48 * Default C++ Constructor |
|
49 */ |
|
50 CStubSuplAuthRequest(); |
|
51 |
|
52 void ConstructL(); |
|
53 }; |
|
54 |
|
55 #endif /* CSTUBSUPLSTARTIMPLE_H_ */ |