diff -r 000000000000 -r c6b0df440bee dbgagents/trkagent/app/s60/TrkSettingsData.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dbgagents/trkagent/app/s60/TrkSettingsData.h Tue Mar 02 10:33:16 2010 +0530 @@ -0,0 +1,59 @@ +/* +* Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* +*/ + + +#ifndef __TrkSettingsData_h__ +#define __TrkSettingsData_h__ + +// INCLUDES +#include + +#include "trksrvclisession.h" +#include "TrkConnData.h" + +/** +* CTrkSettingsData +*/ +class CTrkSettingsData : public CBase +{ + public: + static CTrkSettingsData* NewL(RTrkSrvCliSession& aTrkSession); + ~CTrkSettingsData(); + TInt SaveSettings(); + + private: + CTrkSettingsData(RTrkSrvCliSession& aTrkSession); + void ConstructL(); + TInt GetIndexForBaudRate(TUint aRate); + TUint GetBaudRateForIndex(TInt aIndex); + public: + TInt iConnTypeIndex; + TInt iPortNumber; + TInt iBaudRateIndex; + TInt iPlugAndPlay; + TInt iPlugAndPlayType; + + TTrkConnData iTrkConnData; + + private: + RTrkSrvCliSession& iTrkSession; +}; + + +#endif //__TrkSettingsData_h__ + +// End of File