Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / odk / qa / checkapi / checkapi.cxx
blob95cac2c042bf09506446549530c85b9843e1cecf
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 // 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.
13 #endif
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.
19 //#endif
21 // This module contains no tests, this is for the build system.
22 #include <cppunit/plugin/TestPlugIn.h>
24 #ifdef _MSC_VER
25 // deprecation warnings do not matter here
26 #pragma warning (disable : 4996)
27 #endif
29 #include <allheaders.hxx>
31 CPPUNIT_PLUGIN_IMPLEMENT();
32 extern "C" SAL_DLLPUBLIC_EXPORT sal_Bool firstfunc(sal_Bool)
34 return true;
37 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */