1/* This test makes sure that all Pango headers can be included
2 * and compiled in a C++ program.
3 */
4
5#include <pango/pango.h>
6
7#ifdef HAVE_WIN32
8#include <pango/pangowin32.h>
9#endif
10
11#ifdef HAVE_XFT
12#include <pango/pangoxft.h>
13#endif
14
15#ifdef HAVE_FREETYPE
16#include <pango/pangoft2.h>
17#endif
18
19#ifdef HAVE_CAIRO
20#include <pango/pangocairo.h>
21#endif
22
23int
24main ()
25{
26 return 0;
27}
28

source code of gtk/subprojects/pango/tests/cxx-test.cpp