diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-09-27 11:55:37 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-09-27 11:55:37 +0000 |
commit | 6be94c167b4f25c3c229fccb1fc92330faf7d74e (patch) | |
tree | 54c6739d4ff96a17a556361e81aca55aadca3c75 /stoc | |
parent | ff5224ef8e7d6c812640e5ae0374c8f99509330c (diff) |
INTEGRATION: CWS sb76 (1.1.2); FILE ADDED
2007/09/03 08:27:36 sb 1.1.2.1: #i77885# Wrong PRJNAME.
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/inc/stocservices.hxx | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/stoc/inc/stocservices.hxx b/stoc/inc/stocservices.hxx new file mode 100644 index 000000000000..324876e948e0 --- /dev/null +++ b/stoc/inc/stocservices.hxx @@ -0,0 +1,102 @@ +/************************************************************************* + * + * OpenOffice.org - a multi-platform office productivity suite + * + * $RCSfile: stocservices.hxx,v $ + * + * $Revision: 1.2 $ + * + * last change: $Author: hr $ $Date: 2007-09-27 12:55:37 $ + * + * 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 + * + ************************************************************************/ + +// MARKER(update_precomp.py): autogen include statement, do not remove +#include "precompiled_stoc.hxx" + +#include <rtl/ustring.hxx> +#include <com/sun/star/uno/Sequence.hxx> +#include <com/sun/star/uno/Reference.hxx> +#include <com/sun/star/uno/RuntimeException.hpp> + +namespace com { namespace sun { namespace star { namespace uno { + class XInterface; + class XComponentContext; +} } } } + +namespace stoc_services +{ + // typeconv + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL TypeConverter_Impl_CreateInstance( + const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > & ) + throw( ::com::sun::star::uno::RuntimeException ); + ::com::sun::star::uno::Sequence< ::rtl::OUString > tcv_getSupportedServiceNames(); + ::rtl::OUString tcv_getImplementationName(); + + namespace ExternalUriReferenceTranslator + { + com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL create( + com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > const & context) + SAL_THROW((com::sun::star::uno::Exception)); + rtl::OUString SAL_CALL getImplementationName(); + com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames(); + } + + namespace UriReferenceFactory + { + com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL create( + com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > const & context) + SAL_THROW((com::sun::star::uno::Exception)); + rtl::OUString SAL_CALL getImplementationName(); + com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames(); + } + + namespace UriSchemeParser_vndDOTsunDOTstarDOTexpand + { + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL create( + ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const &) + SAL_THROW((::com::sun::star::uno::Exception)); + ::rtl::OUString SAL_CALL getImplementationName(); + ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames(); + } + + namespace UriSchemeParser_vndDOTsunDOTstarDOTscript + { + com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL create( + com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > const &) + SAL_THROW((com::sun::star::uno::Exception)); + rtl::OUString SAL_CALL getImplementationName(); + com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames(); + } + + namespace VndSunStarPkgUrlReferenceFactory + { + com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL create( + com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > const & context) + SAL_THROW((com::sun::star::uno::Exception)); + rtl::OUString SAL_CALL getImplementationName(); + com::sun::star::uno::Sequence< rtl::OUString > SAL_CALL getSupportedServiceNames(); + } +} // namespace |