diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2006-11-14 11:31:24 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2006-11-14 11:31:24 +0000 |
commit | b12e2774871f309995d1b423f4575d3b64914798 (patch) | |
tree | d897e8d637b5b7a491b9107a1d2284d0be7f8cd5 | |
parent | 671adc0da85f62a0f82ff7f50698386046f141df (diff) |
INTEGRATION: CWS aw024 (1.1.2); FILE ADDED
2005/10/07 13:10:43 sj 1.1.2.1: #i48468# added new graphic request for interaction with graphic filters
-rw-r--r-- | offapi/com/sun/star/drawing/GraphicFilterRequest.idl | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/offapi/com/sun/star/drawing/GraphicFilterRequest.idl b/offapi/com/sun/star/drawing/GraphicFilterRequest.idl new file mode 100644 index 000000000000..997fc8409aa9 --- /dev/null +++ b/offapi/com/sun/star/drawing/GraphicFilterRequest.idl @@ -0,0 +1,64 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: GraphicFilterRequest.idl,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: ihi $ $Date: 2006-11-14 12:31:24 $ + * + * 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 + * + ************************************************************************/ +#ifndef __com_sun_star_drawing_GraphicFilterRequest_idl__ +#define __com_sun_star_drawing_GraphicFilterRequest_idl__ + +#ifndef __com_sun_star_uno_Exception_idl__ +#include <com/sun/star/uno/Exception.idl> +#endif + +//============================================================================= + + module com { module sun { module star { module drawing { + +//============================================================================= + +/** represents a general error graphic filter exception. + It can be used to transport the error code information. + E.g. that can be usefull for interactions. + + @since OOo 3.0 + */ +exception GraphicFilterRequest : com::sun::star::uno::Exception +{ + /** specifies the error code. */ + long ErrCode; +}; + +//============================================================================= + +}; }; }; }; + +#endif |