Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
// which accompanies this distribution, and is available
// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
//
/**
@file
@publishedAll
@deprecated
*/
#ifndef __EIKDEBUG_H__
#define __EIKDEBUG_H__
//#define UIKON_OOM_TESTING // enabling the testing requires also adding the FBSRV.LIB to eiksrvs and console mmp file.
#if defined(UIKON_OOM_TESTING)
#define __SHOW_FAIL_RATE(aFormatString, aFailRate) RDebug::Print(aFormatString,aFailRate)
#else
#define __SHOW_FAIL_RATE(aFormatString, aFailRate)
#endif
//#define _LOGGING // enabling RDebug::Print
#ifdef _LOGGING
#include <e32debug.h>
#define DEBUGPRINT1(_p1) RDebug::Print(_p1)
#define DEBUGPRINT2(_p1,_p2) RDebug::Print(_p1,_p2)
#define DEBUGPRINT3(_p1,_p2,_p3) RDebug::Print(_p1,_p2,_p3)
#define DEBUGPRINT4(_p1,_p2,_p3,_p4) RDebug::Print(_p1,_p2,_p3,_p4)
#else
#define DEBUGPRINT1(_p1)
#define DEBUGPRINT2(_p1,_p2)
#define DEBUGPRINT3(_p1,_p2,_p3)
#define DEBUGPRINT4(_p1,_p2,_p3,_p4)
#endif
//
// class CEikDebugPreferences
//
/**
@internalComponent
*/
NONSHARABLE_CLASS(CEikDebugPreferences) : public CBase
{
public:
enum TFlag
{
EFlagDebugKeysOn =0x00000001,
EFlagOOMTestingOnAppStartUp =0x00000002,
EFlagOOMTestingOnEiksrvStartUp =0x00000004,
EFlagOOMTestingOnConsoleStartUp =0x00000008
};
public:
IMPORT_C static CEikDebugPreferences* New();
IMPORT_C static CEikDebugPreferences* NewL();
IMPORT_C static CEikDebugPreferences* NewLC();
IMPORT_C ~CEikDebugPreferences();
IMPORT_C void StoreL(RFs& aFileServerSession);
IMPORT_C TInt Restore(RFs& aFileServerSession); // can be used with or without a CTrapHandler being currently installed
IMPORT_C void RestoreL(RFs& aFileServerSession);
IMPORT_C void SetKeysOn(const TBool& aDebugKeysOn);
IMPORT_C TBool KeysOn() const;
IMPORT_C void ExternalizeL(RWriteStream& aStream) const;
IMPORT_C void InternalizeL(RReadStream& aStream);
inline void SetFlags(TUint aFlags);
inline TUint Flags() const;
private:
CEikDebugPreferences();
private:
TUint iFlags;
TUint iSpare;
};
inline void CEikDebugPreferences::SetFlags(TUint aFlags)
{
iFlags=aFlags;
}
inline TUint CEikDebugPreferences::Flags() const
{
return iFlags;
}
#endif // __EIKDEBUG_H__