fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / officecfg / qa / cppheader.cxx
blob32d487a8340bfe670ce6ebeea20d2be84534d24a
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 #include <sal/types.h>
11 #include "cppunit/TestAssert.h"
12 #include "cppunit/TestFixture.h"
13 #include "cppunit/extensions/HelperMacros.h"
14 #include "cppunit/plugin/TestPlugIn.h"
16 // Just verify that all the generated headers can be included (i.e., that all
17 // the identifiers are valid and do not clash:
18 #include "officecfg/officecfg_qa_allheaders.hxx"
20 namespace {
22 class Test: public CppUnit::TestFixture {
23 void test() {}
25 CPPUNIT_TEST_SUITE(Test);
26 CPPUNIT_TEST(test);
27 CPPUNIT_TEST_SUITE_END();
30 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
34 CPPUNIT_PLUGIN_IMPLEMENT();
36 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */