mCRL2
Loading...
Searching...
No Matches
export.h
Go to the documentation of this file.
1// Author(s): Sjoerd Cranen
2// Copyright: see the accompanying file COPYING or copy at
3// https://github.com/mCRL2org/mCRL2/blob/master/COPYING
4//
5// Distributed under the Boost Software License, Version 1.0.
6// (See accompanying file LICENSE_1_0.txt or copy at
7// http://www.boost.org/LICENSE_1_0.txt)
8//
11
12#ifdef _MSC_VER
13 #define MCRL2_EXPORT __declspec(dllexport)
14#else
15 #ifdef __GNUC__
16 #define MCRL2_EXPORT __attribute__ ((dllexport))
17 #else
18 #define MCRL2_EXPORT
19 #endif // __GNUC__
20#endif // _MSC_VER