diff -r 000000000000 -r e4d67989cc36 syslibsapitest/syslibssvs/common/inc/DataWrapperBase.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/syslibsapitest/syslibssvs/common/inc/DataWrapperBase.h Tue Feb 02 02:01:42 2010 +0200 @@ -0,0 +1,51 @@ +/* +* Copyright (c) 2005-2009 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: +* +*/ + + + +#if (!defined __DATA_WRAPPER_BASE__) +#define __DATA_WRAPPER_BASE__ + +// EPOC includes +#include + +class CDataWrapperBase : public CDataWrapper + { +public: + TBool GetBoolFromConfig(const TDesC& aSectName,const TDesC& aKeyName,TBool& aResult); + TBool GetIntFromConfig(const TDesC& aSectName, const TDesC& aKeyName, TInt& aResult); + TBool GetStringFromConfig(const TDesC& aSectName, const TDesC& aKeyName, TPtrC& aResult); + TBool GetHexFromConfig(const TDesC& aSectName, const TDesC& aKeyName, TInt& aResult); + virtual void InitialiseL(); + inline RFs& FileServer() { return iFs; } + +protected: + CDataWrapperBase(); + virtual ~CDataWrapperBase(); + + +private: + TBool GetCommandStringParameterL(const TDesC& aSectName, const TDesC& aKeyName, TPtrC& aResult); + +private: + // Included ini files + RPointerArray iInclude; + RPointerArray iBuffer; + RFs iFs; + }; + +#endif /* __DATA_WRAPPER_BASE__ */