You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
606 B
C
24 lines
606 B
C
|
1 month ago
|
/*------------------------------------------------------------------------------
|
||
|
|
* Copyright (c) 2023 by Bai Bing (seread@163.com)
|
||
|
|
* See COPYING file for copying and redistribution conditions.
|
||
|
|
*
|
||
|
|
* Alians IT Studio.
|
||
|
|
* 使用最小曲率网格化位场离散数据
|
||
|
|
*----------------------------------------------------------------------------*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#if defined(_MSC_VER)
|
||
|
|
// Microsoft
|
||
|
|
#if !defined(OUTSIDE_DLL)
|
||
|
|
#define AIS_EXPORT __declspec(dllexport)
|
||
|
|
#else
|
||
|
|
#define AIS_EXPORT __declspec(dllimport)
|
||
|
|
#endif
|
||
|
|
#elif defined(__GNUC__)
|
||
|
|
// GCC
|
||
|
|
#define AIS_EXPORT
|
||
|
|
#else
|
||
|
|
#define AIS_EXPORT
|
||
|
|
#endif
|