Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Started by DWW, May 1997
19 #if !defined(__BAERRHAN_H__)
20 #define __BAERRHAN_H__
22 #if !defined(__E32BASE_H__)
29 #define KUidBaflErrorHandlerValue KUidBaflErrorHandlerValue16
30 #define KUidBaflErrorHandler KUidBaflErrorHandler16
32 #define KUidBaflErrorHandlerValue KUidBaflErrorHandlerValue8
33 #define KUidBaflErrorHandler KUidBaflErrorHandler8
40 const TInt KUidBaflErrorHandlerValue8=0x10000257;
41 const TUid KUidBaflErrorHandler8={KUidBaflErrorHandlerValue8};
42 const TInt KUidBaflErrorHandlerValue16=0x10003A13;
43 const TUid KUidBaflErrorHandler16={KUidBaflErrorHandlerValue16};
48 enum TErrorHandlerResponse
56 class CBaErrorHandler : public CBase
58 deliberately *not* mixable - else couldn't be freely cast
63 virtual TErrorHandlerResponse HandleError(TDes& aErrorText,TDes& aContextText)=0;
64 inline static TErrorHandlerResponse CallBack(TInt aErrorNumber,TDes& aErrorText,TDes& aContextText);
67 inline TErrorHandlerResponse CBaErrorHandler::CallBack(TInt aErrorNumber,TDes& aErrorText,TDes& aContextText)
69 return((CBaErrorHandler*)(aErrorNumber))->HandleError(aErrorText,aContextText);