diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-04-11 11:16:48 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-04-11 11:16:48 +0000 |
commit | 5f2ab498b372217c6e062e8f8a8b28f63ae4f496 (patch) | |
tree | 1eb29b37ace56277c4c41ef3e89c0c31e462dc35 /extensions | |
parent | d9662b93d34d3f2abe3aae29a5590ef9b256c198 (diff) |
INTEGRATION: CWS changefileheader (1.3.276); FILE MERGED
2008/04/01 15:15:25 thb 1.3.276.3: #i85898# Stripping all external header guards
2008/04/01 12:29:59 thb 1.3.276.2: #i85898# Stripping all external header guards
2008/03/31 12:32:37 rt 1.3.276.1: #i87441# Change license header to LPGL v3.
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/workben/testpgp.cxx | 84 |
1 files changed, 18 insertions, 66 deletions
diff --git a/extensions/workben/testpgp.cxx b/extensions/workben/testpgp.cxx index 842606d84ea2..745cb4902ed1 100644 --- a/extensions/workben/testpgp.cxx +++ b/extensions/workben/testpgp.cxx @@ -1,107 +1,59 @@ /************************************************************************* * - * OpenOffice.org - a multi-platform office productivity suite + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * - * $RCSfile: testpgp.cxx,v $ + * Copyright 2008 by Sun Microsystems, Inc. * - * $Revision: 1.3 $ + * OpenOffice.org - a multi-platform office productivity suite * - * last change: $Author: obo $ $Date: 2006-09-16 13:35:53 $ + * $RCSfile: testpgp.cxx,v $ + * $Revision: 1.4 $ * - * The Contents of this file are made available subject to - * the terms of GNU Lesser General Public License Version 2.1. + * This file is part of OpenOffice.org. * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. * - * GNU Lesser General Public License Version 2.1 - * ============================================= - * Copyright 2005 by Sun Microsystems, Inc. - * 901 San Antonio Road, Palo Alto, CA 94303, USA + * OpenOffice.org 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 version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). * - * 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 + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * <http://www.openoffice.org/license.html> + * for a copy of the LGPLv3 License. * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_extensions.hxx" - -#ifndef _SAL_TYPES_H_ #include <sal/types.h> -#endif - -#ifndef _RTL_MEMORY_H_ #include <rtl/memory.h> -#endif #ifndef _RTL_WSTRING_ #include <rtl/wstring> #endif - -#ifndef _VOS_MACROS_HXX_ #include <vos/macros.hxx> -#endif #ifndef _USR_SMARTSERVICES_HXX_ #include <usr/smartservices.hxx> #endif - -#ifndef _COM_SUN_STAR_LANG_XMULTISERVICEFACTORY_HPP_ #include <com/sun/star/lang/XMultiServiceFactory.hpp> -#endif - -#ifndef _COM_SUN_STAR_IO_XINPUTSTREAM_HPP_ #include <com/sun/star/io/XInputStream.hpp> -#endif -#ifndef _COM_SUN_STAR_IO_XOUTPUTSTREAM_HPP_ #include <com/sun/star/io/XOutputStream.hpp> -#endif - -#ifndef _COM_SUN_STAR_PGP_RECIPIENTSEVENT_HPP_ #include <com/sun/star/pgp/RecipientsEvent.hpp> -#endif -#ifndef _COM_SUN_STAR_PGP_SIGNATUREEVENT_HPP_ #include <com/sun/star/pgp/SignatureEvent.hpp> -#endif -#ifndef _COM_SUN_STAR_PGP_XPGPDECODER_HPP_ #include <com/sun/star/pgp/XPGPDecoder.hpp> -#endif -#ifndef _COM_SUN_STAR_PGP_XPGPDECODERLISTENER_HPP_ #include <com/sun/star/pgp/XPGPDecoderListener.hpp> -#endif -#ifndef _COM_SUN_STAR_PGP_XPGPENCODER_HPP_ #include <com/sun/star/pgp/XPGPEncoder.hpp> -#endif -#ifndef _COM_SUN_STAR_PGP_XPGPPREFERENCES_HPP_ #include <com/sun/star/pgp/XPGPPreferences.hpp> -#endif - -#ifndef _COM_SUN_STAR_UNO_XINTERFACE_HPP_ #include <com/sun/star/uno/XInterface.hpp> -#endif - -#ifndef _COM_SUN_STAR_UNO_ANY_H_ #include <com/sun/star/uno/Any.h> -#endif -#ifndef _COM_SUN_STAR_UNO_REFERENCE_H_ #include <com/sun/star/uno/Reference.h> -#endif -#ifndef _COM_SUN_STAR_UNO_SEQUENCE_HXX_ #include <com/sun/star/uno/Sequence.hxx> -#endif - -#ifndef _CPPUHELPER_WEAK_HXX_ #include <cppuhelper/weak.hxx> -#endif #include <stdio.h> #include <stdlib.h> |