bump product version to 6.4.0.3
[LibreOffice.git] / io / source / services.hxx
blob119f6e29feacd5270273e258978afcb67112d528
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 .
20 #ifndef INCLUDED_IO_SOURCE_SERVICES_HXX
21 #define INCLUDED_IO_SOURCE_SERVICES_HXX
23 #include <sal/config.h>
25 #include <com/sun/star/uno/Reference.hxx>
26 #include <com/sun/star/uno/Sequence.hxx>
27 #include <rtl/ustring.hxx>
28 #include <sal/types.h>
30 namespace com::sun::star::uno { class XComponentContext; }
32 using namespace ::com::sun::star::uno;
34 namespace io_acceptor{
35 Reference< XInterface > acceptor_CreateInstance( const Reference< XComponentContext > & xCtx);
36 OUString acceptor_getImplementationName();
37 Sequence< OUString > acceptor_getSupportedServiceNames();
40 namespace stoc_connector {
41 Reference< XInterface > connector_CreateInstance( const Reference< XComponentContext > & xCtx);
42 OUString connector_getImplementationName();
43 Sequence< OUString > connector_getSupportedServiceNames();
46 namespace io_TextInputStream {
47 Reference< XInterface > TextInputStream_CreateInstance(SAL_UNUSED_PARAMETER const Reference< XComponentContext > &);
48 OUString TextInputStream_getImplementationName();
49 Sequence< OUString > TextInputStream_getSupportedServiceNames();
52 namespace io_TextOutputStream {
53 Reference< XInterface > TextOutputStream_CreateInstance(SAL_UNUSED_PARAMETER const Reference< XComponentContext > &);
54 OUString TextOutputStream_getImplementationName();
55 Sequence< OUString > TextOutputStream_getSupportedServiceNames();
58 namespace io_stm {
59 /// @throws Exception
60 Reference< XInterface > OPipeImpl_CreateInstance( const Reference< XComponentContext > & rSMgr );
61 OUString OPipeImpl_getImplementationName();
62 Sequence<OUString> OPipeImpl_getSupportedServiceNames();
64 /// @throws Exception
65 Reference< XInterface > ODataInputStream_CreateInstance( const Reference< XComponentContext > & rSMgr );
66 OUString ODataInputStream_getImplementationName();
67 Sequence<OUString> ODataInputStream_getSupportedServiceNames();
69 /// @throws Exception
70 Reference< XInterface > ODataOutputStream_CreateInstance( const Reference< XComponentContext > & rSMgr );
71 OUString ODataOutputStream_getImplementationName();
72 Sequence<OUString> ODataOutputStream_getSupportedServiceNames();
74 /// @throws Exception
75 Reference< XInterface > OMarkableOutputStream_CreateInstance( const Reference< XComponentContext > & rSMgr );
76 OUString OMarkableOutputStream_getImplementationName();
77 Sequence<OUString> OMarkableOutputStream_getSupportedServiceNames();
79 /// @throws Exception
80 Reference< XInterface > OMarkableInputStream_CreateInstance( const Reference< XComponentContext > & rSMgr );
81 OUString OMarkableInputStream_getImplementationName() ;
82 Sequence<OUString> OMarkableInputStream_getSupportedServiceNames();
84 /// @throws Exception
85 Reference< XInterface > OObjectOutputStream_CreateInstance( const Reference< XComponentContext > & rSMgr );
86 OUString OObjectOutputStream_getImplementationName();
87 Sequence<OUString> OObjectOutputStream_getSupportedServiceNames();
89 /// @throws Exception
90 Reference< XInterface > OObjectInputStream_CreateInstance( const Reference< XComponentContext > & rSMgr );
91 OUString OObjectInputStream_getImplementationName() ;
92 Sequence<OUString> OObjectInputStream_getSupportedServiceNames();
94 /// @throws Exception
95 Reference< XInterface > OPumpImpl_CreateInstance( const Reference< XComponentContext > & rSMgr );
96 OUString OPumpImpl_getImplementationName();
97 Sequence<OUString> OPumpImpl_getSupportedServiceNames();
100 #endif
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */