Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / include / vcl / uitest / factory.hxx
blobe51427876668479100580a12e90ef05f9ced486c
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/.
8 */
10 #ifndef INCLUDED_VCL_UITEST_FACTORY_HXX
11 #define INCLUDED_VCL_UITEST_FACTORY_HXX
13 #include <memory>
14 #include <functional>
16 namespace vcl
18 class Window;
21 class UIObject;
23 typedef std::function<std::unique_ptr<UIObject>(vcl::Window*)> FactoryFunction;
25 #endif
27 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */