xref: /trunk/main/framework/source/register/registertemp.cxx (revision cf6516809c57e1bb0a940545cca99cdad54d4ce2)
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 <services/mediatypedetectionhelper.hxx>
52 #include <dispatch/mailtodispatcher.hxx>
53 #include <dispatch/oxt_handler.hxx>
54 #include <dispatch/popupmenudispatcher.hxx>
55 #include <dispatch/servicehandler.hxx>
56 #include <services/dispatchhelper.hxx>
57 #include <recording/dispatchrecorder.hxx>
58 #include <recording/dispatchrecordersupplier.hxx>
59 #include <services/license.hxx>
60 #include <services/uriabbreviation.hxx>
61 #include <uielement/fontmenucontroller.hxx>
62 #include <uielement/fontsizemenucontroller.hxx>
63 #include <uielement/footermenucontroller.hxx>
64 #include <uielement/headermenucontroller.hxx>
65 #include <uielement/langselectionmenucontroller.hxx>
66 #include <uielement/macrosmenucontroller.hxx>
67 #include <uielement/newmenucontroller.hxx>
68 #include <uielement/toolbarsmenucontroller.hxx>
69 
70 COMPONENTGETIMPLEMENTATIONENVIRONMENT
71 
72 COMPONENTGETFACTORY (   IFFACTORY( ::framework::MediaTypeDetectionHelper        )
73                         IFFACTORY( ::framework::MailToDispatcher                        ) else
74                         IFFACTORY( ::framework::ServiceHandler                          )   else
75                         IFFACTORY( ::framework::License                                 )   else
76                         IFFACTORY( ::framework::PopupMenuDispatcher                     )   else
77                         IFFACTORY( ::framework::DispatchHelper                          )   else
78                         IFFACTORY( ::framework::DispatchRecorder                        )   else
79                         IFFACTORY( ::framework::DispatchRecorderSupplier                )   else
80                         IFFACTORY( ::framework::ToolbarsMenuController                  )   else
81                         IFFACTORY( ::framework::FontMenuController                      )   else
82                         IFFACTORY( ::framework::MacrosMenuController                    )   else
83                         IFFACTORY( ::framework::NewMenuController                       )   else
84                         IFFACTORY( ::framework::FontSizeMenuController                  )   else
85                         IFFACTORY( ::framework::UriAbbreviation                         )   else
86                         IFFACTORY( ::framework::FooterMenuController                    )   else
87                         IFFACTORY( ::framework::HeaderMenuController                    )   else
88                         IFFACTORY( ::framework::LanguageSelectionMenuController         )   else
89                         IFFACTORY( ::framework::Oxt_Handler                             )
90                     )
91