1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #if !defined(__SS_PROTOPT_H__)
23 #define __SS_PROTOPT_H__
26 * T class which holds the parameters used for SetOpt( )
38 * Generic class to implement SetOpt( ) at SapShim.
40 class CSAPSetOpt : public CBase, public Meta::SMetaData
50 IMPORT_C CSAPSetOpt();
51 virtual ~CSAPSetOpt();
53 //Add the option to the RArray variable
54 IMPORT_C void AddProtocolOptionL(TUint aOptionName, TUint aOptionLevel, TUint aOptionValue);
56 //Update the value for an option
57 IMPORT_C void UpdateProtocolOption(TUint aOptionName, TUint aOptionLevel, TUint aOptionValue);
61 RArray<TProtocolOption> iOption;
68 #endif //__SS_PROTOPT_H__