update credits
[LibreOffice.git] / stoc / inc / stocservices.hxx
blob3017c060815b53ba432d566cc4405296330aa69d
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 #include <rtl/ustring.hxx>
22 #include <com/sun/star/uno/Sequence.hxx>
23 #include <com/sun/star/uno/Reference.hxx>
24 #include <com/sun/star/uno/RuntimeException.hpp>
26 namespace com { namespace sun { namespace star { namespace uno {
27 class XInterface;
28 class XComponentContext;
29 } } } }
31 namespace stoc_services
33 // typeconv
34 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL TypeConverter_Impl_CreateInstance(
35 const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > & )
36 throw( ::com::sun::star::uno::RuntimeException );
37 ::com::sun::star::uno::Sequence< OUString > tcv_getSupportedServiceNames();
38 OUString tcv_getImplementationName();
40 namespace ExternalUriReferenceTranslator
42 com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL create(
43 com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > const & context)
44 SAL_THROW((com::sun::star::uno::Exception));
45 OUString SAL_CALL getImplementationName();
46 com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames();
49 namespace UriReferenceFactory
51 com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL create(
52 com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > const & context)
53 SAL_THROW((com::sun::star::uno::Exception));
54 OUString SAL_CALL getImplementationName();
55 com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames();
58 namespace UriSchemeParser_vndDOTsunDOTstarDOTexpand
60 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface > SAL_CALL create(
61 ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > const &)
62 SAL_THROW((::com::sun::star::uno::Exception));
63 OUString SAL_CALL getImplementationName();
64 ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames();
67 namespace UriSchemeParser_vndDOTsunDOTstarDOTscript
69 com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL create(
70 com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > const &)
71 SAL_THROW((com::sun::star::uno::Exception));
72 OUString SAL_CALL getImplementationName();
73 com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames();
76 namespace VndSunStarPkgUrlReferenceFactory
78 com::sun::star::uno::Reference< com::sun::star::uno::XInterface > SAL_CALL create(
79 com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext > const & context)
80 SAL_THROW((com::sun::star::uno::Exception));
81 OUString SAL_CALL getImplementationName();
82 com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames();
84 } // namespace
86 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */