File: cxx-test.cpp

package info (click to toggle)
gtk4 4.18.6%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 191,540 kB
  • sloc: ansic: 808,125; xml: 3,256; javascript: 3,061; python: 2,118; sh: 972; cpp: 799; java: 685; makefile: 319; perl: 218
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;
}