Main MRPT website
>
C++ reference for MRPT 1.5.9
mrpt
graphslam
graphslam/include/mrpt/graphslam/link_pragmas.h
Go to the documentation of this file.
1
/* +---------------------------------------------------------------------------+
2
| Mobile Robot Programming Toolkit (MRPT) |
3
| http://www.mrpt.org/ |
4
| |
5
| Copyright (c) 2005-2017, Individual contributors, see AUTHORS file |
6
| See: http://www.mrpt.org/Authors - All rights reserved. |
7
| Released under BSD License. See details in http://www.mrpt.org/License |
8
+---------------------------------------------------------------------------+ */
9
10
#pragma once
11
12
#include <mrpt/config.h>
13
14
// ** Important! **
15
// In each mrpt library, search and replace:
16
// MRPT_XXX_EXPORT, MRPT_XXX_IMPORT
17
// GRAPHSLAM_IMPEXP, mrpt_xxx_EXPORTS
18
19
/* The macros below for DLL import/export are required for Windows only.
20
Mostly all the definitions in this file are copied or at least graphslamd
21
on the file wx/dlimpexp.h, written by Vadim Zeitlin and published
22
under the wxWindows licence.
23
*/
24
#if defined(MRPT_OS_WINDOWS)
25
#define MRPT_GRAPHSLAM_EXPORT __declspec(dllexport)
26
#define MRPT_GRAPHSLAM_IMPORT __declspec(dllimport)
27
#else
28
# define MRPT_GRAPHSLAM_EXPORT
29
# define MRPT_GRAPHSLAM_IMPORT
30
#endif
31
32
/* Macros that map to export declaration when building the DLL, to import
33
declaration if using it or to nothing at all if we are not compiling as DLL */
34
#if defined(MRPT_BUILT_AS_DLL)
35
# if defined(mrpt_graphslam_EXPORTS)
/* Building the DLL */
36
# define GRAPHSLAM_IMPEXP MRPT_GRAPHSLAM_EXPORT
37
# else
/* Using the DLL */
38
# define GRAPHSLAM_IMPEXP MRPT_GRAPHSLAM_IMPORT
39
# endif
40
#else
/* not making nor using DLL */
41
# define GRAPHSLAM_IMPEXP
42
#endif
Page generated by
Doxygen 1.8.14
for MRPT 1.5.9 Git: 690a4699f Wed Apr 15 19:29:53 2020 +0200 at miƩ abr 15 19:30:12 CEST 2020