/*------------------------------------------------------------------------------ * 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