diff -r a5deb6b96675 -r 63cf70d3ecd8 backupandrestore/backupengine/inc/sbtrace.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/backupandrestore/backupengine/inc/sbtrace.h Fri Sep 17 08:34:51 2010 +0300 @@ -0,0 +1,39 @@ +/** +* Copyright (c) 2004-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: +* Main entry point in the process. +* +* +*/ + + + +/** + @file +*/ + +#ifndef __SBTRACE_H__ +#define __SBTRACE_H__ + +#define LEAVEIFERROR(err, trace) \ +{ \ +TInt munged_err=(err); \ +if (munged_err < 0) \ +{ \ +trace; \ +User::Leave(munged_err);\ +}\ +} + +#endif //__SBTRACE_H__