diff -r c32dc0be5eb4 -r 6b4fc789785b remotestoragefw/gsplugin/inc/rsfwgssettingsdata.h --- a/remotestoragefw/gsplugin/inc/rsfwgssettingsdata.h Mon Jan 18 21:00:57 2010 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,102 +0,0 @@ -/* -* 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: Rsfw GS plugin data holding class for Rsfw setting list -* -*/ - - -#ifndef CRSFWGSSETTINGSDATA_H -#define CRSFWGSSETTINGSDATA_H - -// INCLUDE FILES -#include - -#include "rsfwgsplugin.hrh" - - -// CONSTANTS -const TInt KDefaultInactivityTimeout = 600; // 5min - -/** -* CRsfwGsSettingsData holds single remote drive configuration -*/ -class CRsfwGsSettingsData : public CBase - { - public: - - /** - * Default 1st phase factory method. - * Creates an instance of CRsfwGsSettingsData - */ - static CRsfwGsSettingsData* NewL(); - - /** - * Default 1st phase factory method. - * Creates an instance of CRsfwGsSettingsData, leaves it on stack - */ - static CRsfwGsSettingsData* NewLC(); - - /** - * Destructor - */ - virtual ~CRsfwGsSettingsData(); - - /** - * Resets all data to initial values - */ - void Reset(); - - private: - - /** - * 2nd Phase constructor - */ - void ConstructL(); - - /** - * C++ Constructor - */ - CRsfwGsSettingsData(); - - public: - - // Buffer holding the remote drive friendly name - TBuf iSettingName; - - // Access point number - TInt32 iAccessPoint; - - // Buffer holding the access point number as a descriptor - TBuf iAccessPointDes; - - // Buffer holding the URL - TBuf iURL; - - // Buffer holding the User ID - TBuf iUserID; - - // Buffer holding the password - TBuf iPassword; - - // Buffer holding the access point name - TBuf iAccessPointName; - - // Inactivity timeout - TBuf iInActivityTimeout; - - // drive letter - TChar iDriveLetter; - }; - -#endif // CRSFWGSSETTINGSDATA_H \ No newline at end of file