multimediacommsengine/tsrc/testdriver/siptester/ttcnresolverplugin/src/CTTCNResolverPlugin1.h
equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2004 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: See class definition below. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef __CTTCNResolverPlugin1_H__ |
|
19 #define __CTTCNResolverPlugin1_H__ |
|
20 |
|
21 // INCLUDES |
|
22 #include <apgcli.h> |
|
23 #include "CTTCNResolverPluginBase.h" |
|
24 |
|
25 // CONSTANTS ( implementation 1 ) |
|
26 const TInt32 KTTCNResolverPluginUID1 = 0x10203345; |
|
27 |
|
28 // CLASS DEFINITION |
|
29 /** |
|
30 * CTTCNResolverPlugin1 implements a simple plugin for testing ClientResolver. |
|
31 */ |
|
32 class CTTCNResolverPlugin1 : public CTTCNResolverPluginBase |
|
33 { |
|
34 public: |
|
35 /** |
|
36 * Static constructor |
|
37 * @return An initialized instance of this class. |
|
38 */ |
|
39 static CTTCNResolverPlugin1* NewL(); |
|
40 |
|
41 /** |
|
42 * Destructor |
|
43 */ |
|
44 ~CTTCNResolverPlugin1(); |
|
45 |
|
46 public: // from CTTCNResolverPluginBase |
|
47 TInt32 MyUid() const; |
|
48 |
|
49 public: // from CSIPResolvedClient |
|
50 const TDesC8& Capabilities(); |
|
51 |
|
52 private: |
|
53 |
|
54 void ConstructL(); |
|
55 |
|
56 void CapabilitiesL(); |
|
57 |
|
58 private: // data |
|
59 |
|
60 HBufC8* iCapabilities; |
|
61 }; |
|
62 |
|
63 #endif // __CTTCNResolverPlugin1_H__ |