1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
10 // Acts as if building outside of LO.
11 #ifdef LIBO_INTERNAL_ONLY
12 #error Build system problem, LIBO_INTERNAL_ONLY should not be set here.
15 // Additionally, check that public API headers build also with C++03.
17 //#if __cplusplus >= 201103L
18 //#error Build system problem, C++03 should be used here.
21 // This module contains no tests, this is for the build system.
22 #include <cppunit/plugin/TestPlugIn.h>
25 // deprecation warnings do not matter here
26 #pragma warning (disable : 4996)
29 #include <allheaders.hxx>
31 CPPUNIT_PLUGIN_IMPLEMENT();
32 extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool
firstfunc(sal_Bool
)
37 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */