File: cxx-test.cpp

package info (click to toggle)
pango1.0 1.57.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,164 kB
  • sloc: ansic: 86,669; cpp: 6,470; exp: 6,462; makefile: 1,953; perl: 1,838; sh: 1,498; python: 1,367; javascript: 7; xml: 6
file content (27 lines) | stat: -rw-r--r-- 377 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* This test makes sure that all Pango headers can be included
 * and compiled in a C++ program.
 */

#include <pango/pango.h>

#ifdef HAVE_WIN32
#include <pango/pangowin32.h>
#endif

#ifdef HAVE_XFT
#include <pango/pangoxft.h>
#endif

#ifdef HAVE_FREETYPE
#include <pango/pangoft2.h>
#endif

#ifdef HAVE_CAIRO
#include <pango/pangocairo.h>
#endif

int
main ()
{
  return 0;
}