mirror of
https://gitee.com/js-yhsec/energy_storage.git
synced 2026-05-27 18:59:26 +08:00
实现excel报表文件生成功能
This commit is contained in:
43
thirdparty/OpenXLSX/include/headers/OpenXLSX-Exports.hpp
vendored
Normal file
43
thirdparty/OpenXLSX/include/headers/OpenXLSX-Exports.hpp
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
|
||||
#ifndef OPENXLSX_EXPORT_H
|
||||
#define OPENXLSX_EXPORT_H
|
||||
|
||||
#ifdef OPENXLSX_STATIC_DEFINE
|
||||
# define OPENXLSX_EXPORT
|
||||
# define OPENXLSX_HIDDEN
|
||||
#else
|
||||
# ifndef OPENXLSX_EXPORT
|
||||
# ifdef OpenXLSX_EXPORTS
|
||||
/* We are building this library */
|
||||
# define OPENXLSX_EXPORT
|
||||
# else
|
||||
/* We are using this library */
|
||||
# define OPENXLSX_EXPORT
|
||||
# endif
|
||||
# endif
|
||||
|
||||
# ifndef OPENXLSX_HIDDEN
|
||||
# define OPENXLSX_HIDDEN
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#ifndef OPENXLSX_DEPRECATED
|
||||
# define OPENXLSX_DEPRECATED __declspec(deprecated)
|
||||
#endif
|
||||
|
||||
#ifndef OPENXLSX_DEPRECATED_EXPORT
|
||||
# define OPENXLSX_DEPRECATED_EXPORT OPENXLSX_EXPORT OPENXLSX_DEPRECATED
|
||||
#endif
|
||||
|
||||
#ifndef OPENXLSX_DEPRECATED_NO_EXPORT
|
||||
# define OPENXLSX_DEPRECATED_NO_EXPORT OPENXLSX_HIDDEN OPENXLSX_DEPRECATED
|
||||
#endif
|
||||
|
||||
/* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */
|
||||
#if 0 /* DEFINE_NO_DEPRECATED */
|
||||
# ifndef OPENXLSX_NO_DEPRECATED
|
||||
# define OPENXLSX_NO_DEPRECATED
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#endif /* OPENXLSX_EXPORT_H */
|
||||
Reference in New Issue
Block a user