2001-11-09 04:57:14 -06:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2005-09-07 22:01:53 -05:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2001-11-09 04:57:14 -06:00
|
|
|
*
|
2005-09-07 22:01:53 -05:00
|
|
|
* $RCSfile: utility.hxx,v $
|
2001-11-09 04:57:14 -06:00
|
|
|
*
|
2006-09-25 06:49:38 -05:00
|
|
|
* $Revision: 1.7 $
|
2001-11-09 04:57:14 -06:00
|
|
|
*
|
2006-09-25 06:49:38 -05:00
|
|
|
* last change: $Author: vg $ $Date: 2006-09-25 12:49:38 $
|
2001-11-09 04:57:14 -06:00
|
|
|
*
|
2005-09-07 22:01:53 -05:00
|
|
|
* The Contents of this file are made available subject to
|
|
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
2001-11-09 04:57:14 -06:00
|
|
|
*
|
|
|
|
*
|
2005-09-07 22:01:53 -05:00
|
|
|
* GNU Lesser General Public License Version 2.1
|
|
|
|
* =============================================
|
|
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
2001-11-09 04:57:14 -06:00
|
|
|
*
|
2005-09-07 22:01:53 -05:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License version 2.1, as published by the Free Software Foundation.
|
2001-11-09 04:57:14 -06:00
|
|
|
*
|
2005-09-07 22:01:53 -05:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-11-09 04:57:14 -06:00
|
|
|
*
|
2005-09-07 22:01:53 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
2001-11-09 04:57:14 -06:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIGMGR_UTILITY_HXX_
|
|
|
|
#define CONFIGMGR_UTILITY_HXX_
|
2006-09-25 06:49:38 -05:00
|
|
|
#if defined(_MSC_VER) && (_MSC_VER >= 1400)
|
|
|
|
#pragma warning(disable : 4350) // behavior change: 'member1' called instead of 'member2'
|
|
|
|
#endif
|
2001-11-09 04:57:14 -06:00
|
|
|
|
2003-03-19 09:20:19 -06:00
|
|
|
#ifndef _COM_SUN_STAR_UNO_RUNTIMEEXCEPTION_HPP_
|
|
|
|
#include <com/sun/star/uno/RuntimeException.hpp>
|
|
|
|
#endif
|
2002-03-15 04:39:30 -06:00
|
|
|
#ifndef _SALHELPER_SIMPLEREFERENCEOBJECT_HXX_
|
|
|
|
#include <salhelper/simplereferenceobject.hxx>
|
|
|
|
#endif
|
|
|
|
|
2001-11-09 04:57:14 -06:00
|
|
|
#define CFG_NOTHROW() SAL_THROW( () )
|
|
|
|
|
2002-04-25 09:46:40 -05:00
|
|
|
#define CFG_THROW1( Ex1 ) SAL_THROW( (Ex1) )
|
|
|
|
#define CFG_THROW2( Ex1,Ex2 ) SAL_THROW( (Ex1,Ex2) )
|
|
|
|
#define CFG_THROW3( Ex1,Ex2,Ex3 ) SAL_THROW( (Ex1,Ex2,Ex3) )
|
|
|
|
#define CFG_THROW4( Ex1,Ex2,Ex3,Ex4 ) SAL_THROW( (Ex1,Ex2,Ex3,Ex4) )
|
|
|
|
#define CFG_THROW5( Ex1,Ex2,Ex3,Ex4,Ex5 ) SAL_THROW( (Ex1,Ex2,Ex3,Ex4,Ex5) )
|
|
|
|
#define CFG_THROW6( Ex1,Ex2,Ex3,Ex4,Ex5,Ex6 ) SAL_THROW( (Ex1,Ex2,Ex3,Ex4,Ex5,Ex6) )
|
2001-11-09 04:57:14 -06:00
|
|
|
|
|
|
|
#define CFG_UNO_THROW1( Ex1 ) \
|
2002-04-25 09:46:40 -05:00
|
|
|
SAL_THROW( (::com::sun::star::Ex1, \
|
|
|
|
::com::sun::star::uno::RuntimeException) )
|
2001-11-09 04:57:14 -06:00
|
|
|
|
|
|
|
#define CFG_UNO_THROW2( Ex1,Ex2 ) \
|
2002-04-25 09:46:40 -05:00
|
|
|
SAL_THROW( (::com::sun::star::Ex1, ::com::sun::star::Ex2, \
|
|
|
|
::com::sun::star::uno::RuntimeException) )
|
2001-11-09 04:57:14 -06:00
|
|
|
|
|
|
|
#define CFG_UNO_THROW3( Ex1,Ex2,Ex3 ) \
|
2002-04-25 09:46:40 -05:00
|
|
|
SAL_THROW( (::com::sun::star::Ex1, ::com::sun::star::Ex2, ::com::sun::star::Ex3, \
|
|
|
|
::com::sun::star::uno::RuntimeException) )
|
|
|
|
|
|
|
|
#define CFG_UNO_THROW4( Ex1,Ex2,Ex3,Ex4 ) \
|
|
|
|
SAL_THROW( (::com::sun::star::Ex1, ::com::sun::star::Ex2, ::com::sun::star::Ex3, \
|
|
|
|
::com::sun::star::Ex4, \
|
|
|
|
::com::sun::star::uno::RuntimeException) )
|
|
|
|
|
|
|
|
#define CFG_UNO_THROW5( Ex1,Ex2,Ex3,Ex4,Ex5 ) \
|
|
|
|
SAL_THROW( (::com::sun::star::Ex1, ::com::sun::star::Ex2, ::com::sun::star::Ex3, \
|
|
|
|
::com::sun::star::Ex4, ::com::sun::star::Ex5, \
|
|
|
|
::com::sun::star::uno::RuntimeException) )
|
|
|
|
|
|
|
|
#define CFG_UNO_THROW6( Ex1,Ex2,Ex3,Ex4,Ex5,Ex6 ) \
|
|
|
|
SAL_THROW( (::com::sun::star::Ex1, ::com::sun::star::Ex2, ::com::sun::star::Ex3, \
|
|
|
|
::com::sun::star::Ex4, ::com::sun::star::Ex5, ::com::sun::star::Ex6, \
|
|
|
|
::com::sun::star::uno::RuntimeException) )
|
2001-11-09 04:57:14 -06:00
|
|
|
|
|
|
|
#define CFG_UNO_THROW_ALL( ) CFG_UNO_THROW1(uno::Exception)
|
|
|
|
#define CFG_UNO_THROW_RTE( ) CFG_UNO_THROW1(uno::RuntimeException)
|
|
|
|
|
|
|
|
namespace configmgr
|
|
|
|
{
|
|
|
|
class Noncopyable
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
Noncopyable() {}
|
|
|
|
~Noncopyable() {}
|
|
|
|
private:
|
|
|
|
Noncopyable (Noncopyable& notImplemented);
|
|
|
|
void operator= (Noncopyable& notImplemented);
|
|
|
|
};
|
|
|
|
|
2002-03-15 04:39:30 -06:00
|
|
|
struct Refcounted
|
|
|
|
: virtual salhelper::SimpleReferenceObject
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
2001-11-09 04:57:14 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // CONFIGMGR_UTILITY_HXX_
|
|
|
|
|