MorphoGraphX  2.0-1-227
CellAtlasConfig.hpp
Go to the documentation of this file.
1 //
2 // This file is part of 3DCellAtlas.
3 // Copyright (C) 2015 George W. Bassel and collaborators.
4 //
5 // If you use 3DCellAtlas in your work, please cite:
6 // http://dx.doi.org/10.1105/tpc.15.00175
7 //
8 // 3DCellAtlas is an AddOn for MorphoGraphX - http://www.MorphoGraphX.org
9 // Copyright (C) 2012-2015 Richard S. Smith and collaborators.
10 //
11 // 3DCellAtlas and MorphoGraphX are free software, and are licensed under under the terms of the
12 // GNU General (GPL) Public License version 2.0, http://www.gnu.org/licenses.
13 //
14 #ifndef CELL_ATLAS_CONFIG_HPP
15 #define CELL_ATLAS_CONFIG_HPP
16 
17 #include <Config.hpp>
18 
19 #if defined(WIN32) || defined(WIN64)
20  #ifdef mgxUCellAtlas_EXPORTS
21  #define CellAtlas_EXPORT __declspec(dllexport)
22  #else
23  #define CellAtlas_EXPORT __declspec(dllimport)
24  #endif
25 #else
26  #define CellAtlas_EXPORT
27 #endif
28 
29 #endif