xref: /trunk/main/framework/source/register/register3rdcomponents.cxx (revision 2d7884914f8f9b4a298efe36f7357992ec4c096c)
1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 // MARKER(update_precomp.py): autogen include statement, do not remove
25 #include "precompiled_framework.hxx"
26 //_________________________________________________________________________________________________________________
27 //  includes of my own project
28 //_________________________________________________________________________________________________________________
29 #include <macros/registration.hxx>
30 
31 /*=================================================================================================================
32     Add new include and new register info to for new services.
33 
34     Example:
35 
36         #ifndef __YOUR_SERVICE_1_HXX_
37         #include <service1.hxx>
38         #endif
39 
40         #ifndef __YOUR_SERVICE_2_HXX_
41         #include <service2.hxx>
42         #endif
43 
44         COMPONENTGETIMPLEMENTATIONENVIRONMENT
45 
46         COMPONENTGETFACTORY (   IFFACTORIE( Service1 )
47                                 else
48                                 IFFACTORIE( Service2 )
49                             )
50 =================================================================================================================*/
51 #include <jobs/helponstartup.hxx>
52 #include <tabwin/tabwinfactory.hxx>
53 #include <dispatch/systemexec.hxx>
54 #include <jobs/shelljob.hxx>
55 
56 COMPONENTGETIMPLEMENTATIONENVIRONMENT
57 
58 COMPONENTGETFACTORY (   IFFACTORY( ::framework::HelpOnStartup       ) else
59                         IFFACTORY( ::framework::TabWinFactory       ) else
60                         IFFACTORY( ::framework::SystemExec          ) else
61                         IFFACTORY( ::framework::ShellJob            )
62                     )
63