source: Revenant/marslib/include/mars_platform.h@ 71dea59

Last change on this file since 71dea59 was 71dea59, checked in by Jonathan Neufeld <support@…>, 4 years ago

Get to a compile state for terrain procedural generation

  • Property mode set to 100755
File size: 301 bytes
Line 
1#ifndef __MARS_PLATFORM_UTILITIES_H__
2#define __MARS_PLATFORM_UTILITIES_H__
3
4#ifdef WIN32
5 #define DL_EXPORT __declspec(dllexport)
6#else
7 #define DL_EXPORT
8#endif
9#define DL_EXPORT_VECTOR(x) \
10 template class DL_EXPORT std::vector< x >; \
11 template class DL_EXPORT std::allocator< x >;
12
13#endif
Note: See TracBrowser for help on using the repository browser.