First public contribution.
1 // Copyright (c) 2003-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.
16 #ifndef __BAASSERT_H__
17 #define __BAASSERT_H__
21 /** TBaAssert class has two methods: AssertDebL and AssertRelL, which
22 can do a panic or leave depending on the iErrorAction value.
23 If the TBaAssert object is created with TBaAssert::ELeave
24 constant, then AssertDebL/AssertRelL methods will leave when called
25 (if aAssertExprVal argument is EFalse).
26 If the TBaAssert object is created with TBaAssert::EPanic
27 constant, then AssertDebL/AssertRelL methods will panic when called
28 (if aAssertExprVal argument is EFalse).
29 If the TBaAssert object is created using the default constructor - by default
30 the methods will panic.
31 The class size has to be exactly sizeof(enum), because objects of that class are
32 used in some legacy code - replacing an existing enum data member.
44 TBaAssert(TErrorAction aErrorAction);
45 void AssertDebL(TBool aAssertExprVal, TBafPanic aPanic) const;
46 void AssertRelL(TBool aAssertExprVal, TBafPanic aPanic) const;
48 void DoAssertL(TBool aAssertExprVal, TBool aDebug, TBafPanic aPanic) const;
49 void DoLeaveL(TBafPanic aPanic) const;
50 void DoAssert(TBool aDebug, TBafPanic aPanic) const;
52 TErrorAction iErrorAction;
55 #endif//__BAASSERT_H__