xref: /aoo41x/main/io/source/stm/factreg.hxx (revision cdf0e10c)
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 #include <rtl/unload.h>
28 
29 namespace io_stm {
30 
31 extern rtl_StandardModuleCount g_moduleCount;
32 
33 // OPipeImpl
34 Reference< XInterface > SAL_CALL OPipeImpl_CreateInstance( const Reference< XComponentContext > & rSMgr ) throw (Exception);
35 OUString 	OPipeImpl_getImplementationName();
36 Sequence<OUString> OPipeImpl_getSupportedServiceNames(void);
37 
38 Reference< XInterface > SAL_CALL ODataInputStream_CreateInstance( const Reference< XComponentContext > & rSMgr ) throw (Exception);
39 OUString 	ODataInputStream_getImplementationName();
40 Sequence<OUString> ODataInputStream_getSupportedServiceNames(void);
41 
42 Reference< XInterface > SAL_CALL ODataOutputStream_CreateInstance( const Reference< XComponentContext > & rSMgr ) throw (Exception);
43 OUString ODataOutputStream_getImplementationName();
44 Sequence<OUString> ODataOutputStream_getSupportedServiceNames(void);
45 
46 Reference< XInterface > SAL_CALL OMarkableOutputStream_CreateInstance( const Reference< XComponentContext > & rSMgr ) throw (Exception);
47 OUString OMarkableOutputStream_getImplementationName();
48 Sequence<OUString> OMarkableOutputStream_getSupportedServiceNames(void);
49 
50 Reference< XInterface > SAL_CALL OMarkableInputStream_CreateInstance( const Reference< XComponentContext > & rSMgr ) throw (Exception);
51 OUString 	OMarkableInputStream_getImplementationName() ;
52 Sequence<OUString> OMarkableInputStream_getSupportedServiceNames(void);
53 
54 Reference< XInterface > SAL_CALL OObjectOutputStream_CreateInstance( const Reference< XComponentContext > & rSMgr ) throw(Exception);
55 OUString OObjectOutputStream_getImplementationName();
56 Sequence<OUString> OObjectOutputStream_getSupportedServiceNames(void);
57 
58 Reference< XInterface > SAL_CALL OObjectInputStream_CreateInstance( const Reference< XComponentContext > & rSMgr ) throw(Exception);
59 OUString 	OObjectInputStream_getImplementationName() ;
60 Sequence<OUString> OObjectInputStream_getSupportedServiceNames(void);
61 
62 Reference< XInterface > SAL_CALL OPumpImpl_CreateInstance( const Reference< XComponentContext > & rSMgr ) throw (Exception);
63 OUString OPumpImpl_getImplementationName();
64 Sequence<OUString> OPumpImpl_getSupportedServiceNames(void);
65 
66 }
67