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