bump product version to 6.3.0.0.beta1
[LibreOffice.git] / cui / source / factory / cuiexp.cxx
blob3c8f89be234d743387154c44421c5612c89e1e22
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 #include <sfx2/basedlgs.hxx>
21 #include <svx/ucsubset.hxx>
22 #include <cuigaldlg.hxx>
23 #include <hlmarkwn.hxx>
24 #include <srchxtra.hxx>
25 #include <cuisrchdlg.hxx>
26 #include <transfrm.hxx>
27 #include <labdlg.hxx>
28 #include <cuitbxform.hxx>
29 #include <optdict.hxx>
30 #include <dlgname.hxx>
31 #include <cuiimapwnd.hxx>
32 #include <multipat.hxx>
33 #include <cuifmsearch.hxx>
34 #include <cuigrfflt.hxx>
35 #include <cuitabarea.hxx>
36 #include <insdlg.hxx>
37 #include <pastedlg.hxx>
38 #include <linkdlg.hxx>
39 #include <postdlg.hxx>
40 #include <passwdomdlg.hxx>
41 #include <screenshotannotationdlg.hxx>
42 #include <cui/cuicharmap.hxx>
43 #include <cuihyperdlg.hxx>
44 #include <cfgutil.hxx>
45 #include <SignatureLineDialog.hxx>
46 #include <SignSignatureLineDialog.hxx>
47 #include <SpellDialog.hxx>
48 #include <zoom.hxx>
49 #include <showcols.hxx>
50 #include <hyphen.hxx>
51 #include <thesdlg.hxx>
52 #include <hangulhanjadlg.hxx>
53 #include <dstribut.hxx>
54 #include <tipofthedaydlg.hxx>
55 #include "dlgfact.hxx"
56 #include <sal/types.h>
58 namespace cui
60 static AbstractDialogFactory_Impl* pFactory=nullptr;
61 static AbstractDialogFactory_Impl* GetFactory()
63 if ( !pFactory )
64 pFactory = new AbstractDialogFactory_Impl;
65 return pFactory;
69 extern "C"
71 SAL_DLLPUBLIC_EXPORT VclAbstractDialogFactory* CreateDialogFactory()
73 return ::cui::GetFactory();
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */