vips-cpp 8.15
libvips C++ binding
Loading...
Searching...
No Matches
vips8
1// Include file to get vips C++ binding
2
3/*
4
5 This file is part of VIPS.
6
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.
11
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.
16
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
20 02110-1301 USA
21
22 */
23
24/*
25
26 These files are distributed with VIPS - http://www.vips.ecs.soton.ac.uk
27
28 */
29
30#ifndef VIPS_CPLUSPLUS
31#define VIPS_CPLUSPLUS
32
33#include <vips/version.h>
34
35#include <glib-object.h>
36
37/* Define VIPS_CPLUSPLUS_EXPORTS to build a DLL using MSVC.
38 */
39#ifdef _VIPS_PUBLIC
40# define VIPS_CPLUSPLUS_API _VIPS_PUBLIC
41#elif defined(_MSC_VER)
42# ifdef VIPS_CPLUSPLUS_EXPORTS
43# define VIPS_CPLUSPLUS_API __declspec(dllexport)
44# else
45# define VIPS_CPLUSPLUS_API __declspec(dllimport)
46# endif
47#else
48# define VIPS_CPLUSPLUS_API
49#endif
50
51#define VIPS_NAMESPACE_START namespace vips {
52#define VIPS_NAMESPACE_END }
53
54#include "VError8.h"
55#include "VImage8.h"
56#include "VInterpolate8.h"
57#include "VRegion8.h"
58#include "VConnection8.h"
59
60#endif /*VIPS_CPLUSPLUS*/