cpp-toolbox  0.0.1
A toolbox library for C++
Loading...
Searching...
No Matches
export.hpp
Go to the documentation of this file.
1#pragma once
2
3#if defined(_WIN32) && defined(CPP_TOOLBOX_EXPORTS)
4# define CPP_TOOLBOX_EXPORT __declspec(dllexport)
5#elif defined(_WIN32) && defined(CPP_TOOLBOX_SHARED_DEFINE)
6# define CPP_TOOLBOX_EXPORT __declspec(dllimport)
7#else
8# define CPP_TOOLBOX_EXPORT
9#endif
10
11#if defined(_MSC_VER) && !defined(__ICL)
12# define CPP_TOOLBOX_NEW_SUPPRESS_C4251 _Pragma("warning(suppress:4251)")
13#else
14# define CPP_TOOLBOX_NEW_SUPPRESS_C4251
15#endif