|
1 /* |
|
2 * Copyright (c) 2004-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: |
|
15 * Name : CSIPSRVOrigDomainUDP.h |
|
16 * Part of : ServerResolver |
|
17 * Version : SIP/4.0 |
|
18 * |
|
19 */ |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 /** |
|
25 @internalComponent |
|
26 */ |
|
27 #ifndef CSIPSRVORIGDOMAINUDP_H |
|
28 #define CSIPSRVORIGDOMAINUDP_H |
|
29 |
|
30 //INCLUDES |
|
31 #include "CSIPQueryConditionBase.h" |
|
32 #include "_sipcodecdefs.h" |
|
33 |
|
34 // FORWARD DECLARATIONS |
|
35 class MSIPServerQuery; |
|
36 class CSIPQueryBase; |
|
37 |
|
38 // CLASS DEFINITION |
|
39 /** |
|
40 * CSIPSRVOrigDomainUDP implements a |
|
41 */ |
|
42 class CSIPSRVOrigDomainUDP : public CSIPQueryConditionBase |
|
43 { |
|
44 public:// Constructors and destructor |
|
45 |
|
46 static CSIPSRVOrigDomainUDP* NewL( MSIPServerQuery& aServerQuery ); |
|
47 |
|
48 ~CSIPSRVOrigDomainUDP(); |
|
49 |
|
50 public: |
|
51 |
|
52 CSIPQueryBase& QueryBase(); |
|
53 |
|
54 CSIPQueryConditionBase* HandleQueryResultL( TInt aStatus ); |
|
55 |
|
56 private:// Constructors and destructor |
|
57 |
|
58 void ConstructL(); |
|
59 |
|
60 CSIPSRVOrigDomainUDP( MSIPServerQuery& aServerQuery ); |
|
61 |
|
62 private:// Data |
|
63 |
|
64 CSIPQueryBase* iQueryBase; |
|
65 |
|
66 MSIPServerQuery& iServerQuery; |
|
67 |
|
68 private: // For testing purposes |
|
69 |
|
70 UNIT_TEST(CSIPSRVOrigDomainUDPTest) |
|
71 }; |
|
72 #endif // end of CSIPSRVORIGDOMAINUDP_H |
|
73 |
|
74 // End of File |