omaprovisioning/provisioning/IMAdapter/Inc/TWPIMVisitor.h
changeset 73 ae69c2e8bc34
parent 71 d2517372cc44
child 77 9f85c58c0592
equal deleted inserted replaced
71:d2517372cc44 73:ae69c2e8bc34
     1 /*
       
     2 * Copyright (c) 2002 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:  TWPIMVisitor crawls a logical proxy
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef TWPIMVISITOR_H
       
    20 #define TWPIMVISITOR_H
       
    21 
       
    22 // INCLUDE FILES
       
    23 #include <e32base.h>
       
    24 
       
    25 // CLASS DECLARATION
       
    26 
       
    27 /**
       
    28  * TWPIMVisitor crawls a logical proxy and finds the corresponding 
       
    29  * NAPDEF.
       
    30  *
       
    31  * @lib WPWAPAdapter
       
    32  * @since 2.0
       
    33  */ 
       
    34 class TWPIMVisitor : public MWPVisitor
       
    35 	{
       
    36 	public:
       
    37 
       
    38         /**
       
    39         * C++ default constructor.
       
    40 		*/
       
    41 		TWPIMVisitor();
       
    42 
       
    43 	public: // From MWPVisitor
       
    44 		void VisitL( CWPParameter& /*aElement*/ );
       
    45 		void VisitL( CWPCharacteristic& aElement );
       
    46 		void VisitLinkL( CWPCharacteristic& aLink );
       
    47 
       
    48 	public: // Data
       
    49 
       
    50 		// The NAPDEF characteristic found
       
    51 		CWPCharacteristic* iNapDef;
       
    52 		// The name of the access point
       
    53 		TPtrC iName;
       
    54 	};
       
    55 
       
    56 
       
    57 #endif	// TWPIMVISITOR_H
       
    58             
       
    59 // End of File