1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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();
60 Reference
< XInterface
> OPipeImpl_CreateInstance( const Reference
< XComponentContext
> & rSMgr
);
61 OUString
OPipeImpl_getImplementationName();
62 Sequence
<OUString
> OPipeImpl_getSupportedServiceNames();
65 Reference
< XInterface
> ODataInputStream_CreateInstance( const Reference
< XComponentContext
> & rSMgr
);
66 OUString
ODataInputStream_getImplementationName();
67 Sequence
<OUString
> ODataInputStream_getSupportedServiceNames();
70 Reference
< XInterface
> ODataOutputStream_CreateInstance( const Reference
< XComponentContext
> & rSMgr
);
71 OUString
ODataOutputStream_getImplementationName();
72 Sequence
<OUString
> ODataOutputStream_getSupportedServiceNames();
75 Reference
< XInterface
> OMarkableOutputStream_CreateInstance( const Reference
< XComponentContext
> & rSMgr
);
76 OUString
OMarkableOutputStream_getImplementationName();
77 Sequence
<OUString
> OMarkableOutputStream_getSupportedServiceNames();
80 Reference
< XInterface
> OMarkableInputStream_CreateInstance( const Reference
< XComponentContext
> & rSMgr
);
81 OUString
OMarkableInputStream_getImplementationName() ;
82 Sequence
<OUString
> OMarkableInputStream_getSupportedServiceNames();
85 Reference
< XInterface
> OObjectOutputStream_CreateInstance( const Reference
< XComponentContext
> & rSMgr
);
86 OUString
OObjectOutputStream_getImplementationName();
87 Sequence
<OUString
> OObjectOutputStream_getSupportedServiceNames();
90 Reference
< XInterface
> OObjectInputStream_CreateInstance( const Reference
< XComponentContext
> & rSMgr
);
91 OUString
OObjectInputStream_getImplementationName() ;
92 Sequence
<OUString
> OObjectInputStream_getSupportedServiceNames();
95 Reference
< XInterface
> OPumpImpl_CreateInstance( const Reference
< XComponentContext
> & rSMgr
);
96 OUString
OPumpImpl_getImplementationName();
97 Sequence
<OUString
> OPumpImpl_getSupportedServiceNames();
102 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */