1// Include file to get vips C++ binding
5 This file is part of VIPS.
7 VIPS is free software; you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU Lesser General Public License for more details.
17 You should have received a copy of the GNU Lesser General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
33/* avoid conflict with Qt definitions, if they exist */
34#if defined(signals) && defined(Q_SIGNALS)
35#define _VIPS_QT_SIGNALS_DEFINED
39#include <vips/version.h>
41#include <glib-object.h>
43/* Note: when building without Meson, it may be necessary to define
44 * _VIPS_PUBLIC as __declspec(dllexport) when building a DLL.
50#define VIPS_CPLUSPLUS_API _VIPS_PUBLIC
52#define VIPS_NAMESPACE_START namespace vips {
53#define VIPS_NAMESPACE_END }
57#include "VInterpolate8.h"
59#include "VConnection8.h"
61/* restore Qt keywords if they were disabled for GLib inclusion */
62#ifdef _VIPS_QT_SIGNALS_DEFINED
63#define signals Q_SIGNALS
64#undef _VIPS_QT_SIGNALS_DEFINED
67#endif /*VIPS_CPLUSPLUS*/