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