WSF
WeaponToolsExport.hpp
Go to the documentation of this file.
1// ****************************************************************************
2// CUI
3//
4// The Advanced Framework for Simulation, Integration, and Modeling (AFSIM)
5//
6// Copyright 2003-2015 The Boeing Company. All rights reserved.
7//
8// The use, dissemination or disclosure of data in this file is subject to
9// limitation or restriction. See accompanying README and LICENSE for details.
10// ****************************************************************************
11
12#ifndef WEAPONTOOLSEXPORT_HPP
13#define WEAPONTOOLSEXPORT_HPP
14
15#if defined(_WIN32)
16
17#pragma warning(disable : 4251)
18#pragma warning(disable : 4786)
19
20#if defined(WEAPON_TOOLS_BUILD_PLUGIN) // Creating DLL (i.e. exporting)
21#define WT_EXPORT __declspec(dllexport)
22#else
23#define WT_EXPORT // Compiling statically.
24#endif
25#else
26#define WT_EXPORT
27#endif
28
29#endif
Copyrights Multiple, All Rights Reserved