1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/inc/BAERRHAN.H Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,72 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Started by DWW, May 1997
1.18 +// Error handler
1.19 +//
1.20 +//
1.21 +
1.22 +#if !defined(__BAERRHAN_H__)
1.23 +#define __BAERRHAN_H__
1.24 +
1.25 +#if !defined(__E32BASE_H__)
1.26 +#include <e32base.h>
1.27 +#endif
1.28 +/**
1.29 +@internalComponent
1.30 +*/
1.31 +#ifdef _UNICODE
1.32 +#define KUidBaflErrorHandlerValue KUidBaflErrorHandlerValue16
1.33 +#define KUidBaflErrorHandler KUidBaflErrorHandler16
1.34 +#else
1.35 +#define KUidBaflErrorHandlerValue KUidBaflErrorHandlerValue8
1.36 +#define KUidBaflErrorHandler KUidBaflErrorHandler8
1.37 +#endif
1.38 +
1.39 +
1.40 +/**
1.41 +@internalComponent
1.42 +*/
1.43 +const TInt KUidBaflErrorHandlerValue8=0x10000257;
1.44 +const TUid KUidBaflErrorHandler8={KUidBaflErrorHandlerValue8};
1.45 +const TInt KUidBaflErrorHandlerValue16=0x10003A13;
1.46 +const TUid KUidBaflErrorHandler16={KUidBaflErrorHandlerValue16};
1.47 +
1.48 +/**
1.49 +@internalComponent
1.50 +*/
1.51 +enum TErrorHandlerResponse
1.52 + {
1.53 + EErrorNotHandled,
1.54 + ENoDisplay,
1.55 + EAlertDisplay,
1.56 + EInfoDisplay
1.57 + };
1.58 +
1.59 +class CBaErrorHandler : public CBase
1.60 +/**
1.61 +deliberately *not* mixable - else couldn't be freely cast
1.62 +@internalComponent
1.63 +*/
1.64 + {
1.65 +public:
1.66 + virtual TErrorHandlerResponse HandleError(TDes& aErrorText,TDes& aContextText)=0;
1.67 + inline static TErrorHandlerResponse CallBack(TInt aErrorNumber,TDes& aErrorText,TDes& aContextText);
1.68 + };
1.69 +
1.70 +inline TErrorHandlerResponse CBaErrorHandler::CallBack(TInt aErrorNumber,TDes& aErrorText,TDes& aContextText)
1.71 + {
1.72 + return((CBaErrorHandler*)(aErrorNumber))->HandleError(aErrorText,aContextText);
1.73 + }
1.74 +
1.75 +#endif