62099b3b24c7346beb22efe66110b4277f467f91
[external/pango1.0.git] / tests / cxx-test.C
1 /* This test makes sure that all Pango headers can be included
2  * and compiled in a C++ program.
3  */
4 #define PANGO_ENABLE_ENGINE
5 #define PANGO_ENABLE_BACKEND
6
7 #include <pango/pango.h>
8
9 #ifdef HAVE_WIN32
10 #include <pango/pangowin32.h>
11 #endif
12
13 #ifdef HAVE_X
14 #include <pango/pangox.h>
15 #endif
16
17 #ifdef HAVE_XFT
18 #include <pango/pangoxft.h>
19 #endif
20
21 #ifdef HAVE_FREETYPE
22 #include <pango/pangoft2.h>
23 #endif
24
25 #ifdef HAVE_CAIRO
26 #include <pango/pangocairo.h>
27 #endif
28
29 int
30 main ()
31 {
32   return 0;
33 }