diff options
author | Rüdiger Timm <rt@openoffice.org> | 2006-01-10 14:51:03 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2006-01-10 14:51:03 +0000 |
commit | 8932281bd56659680237be56e0e3f8a6eea596e7 (patch) | |
tree | 5d9f9508ba7d3d8718e1a9e2470ad9f65c5ccc98 /cppuhelper | |
parent | 9b2a51c749bc64db6f8205abaad63f656aeae848 (diff) |
INTEGRATION: CWS sb41 (1.1.2); FILE ADDED
2005/12/16 10:51:04 sb 1.1.2.1: #i57855# Moved internal cppu.XExceptionThrower to cppuhelper.detail.XExceptionThrower to work around compilation error with MSC.
Diffstat (limited to 'cppuhelper')
-rw-r--r-- | cppuhelper/unotypes/cppuhelper/detail/XExceptionThrower.idl | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/cppuhelper/unotypes/cppuhelper/detail/XExceptionThrower.idl b/cppuhelper/unotypes/cppuhelper/detail/XExceptionThrower.idl new file mode 100644 index 000000000000..cc52be7288c1 --- /dev/null +++ b/cppuhelper/unotypes/cppuhelper/detail/XExceptionThrower.idl @@ -0,0 +1,55 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: XExceptionThrower.idl,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: rt $ $Date: 2006-01-10 15:51:03 $ + * + * The Contents of this file are made available subject to + * the terms of GNU Lesser General Public License Version 2.1. + * + * + * GNU Lesser General Public License Version 2.1 + * ============================================= + * Copyright 2005 by Sun Microsystems, Inc. + * 901 San Antonio Road, Palo Alto, CA 94303, USA + * + * 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. + * + * 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. + * + * 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 + * + ************************************************************************/ + +#if ! defined INCLUDED_cppuhelper_detail_XExceptionThrower_idl +#define INCLUDED_cppuhelper_detail_XExceptionThrower_idl + +#include <com/sun/star/uno/Exception.idl> +#include <com/sun/star/uno/XInterface.idl> + + +module cppuhelper { module detail { + +interface XExceptionThrower : com::sun::star::uno::XInterface +{ + void throwException( [in] any exc ) + raises (com::sun::star::uno::Exception); + void rethrowException() + raises (com::sun::star::uno::Exception); +}; + +}; }; + +#endif |