📄 v3p_netlib.h
字号:
#ifndef v3p_netlib_h
#define v3p_netlib_h
/* Include the basic f2c interface. */
#include "v3p_f2c.h"
/* Mangle the netlib symbols and types to have a v3p_netlib prefix. */
#include "v3p_netlib_mangle.h"
/* Enforce const-correctness only outside v3p_netlib sources. */
#ifdef V3P_NETLIB_SRC
# define v3p_netlib_const
#else
# define v3p_netlib_const const
#endif
/* Modify the interface for C++. */
#ifdef __cplusplus
# undef complex
# include <vcl_complex.h>
# define v3p_netlib_complex vcl_complex<float>
# define v3p_netlib_doublecomplex vcl_complex<double>
#endif
/* Include the netlib interface. */
#ifdef __cplusplus
extern "C" {
#endif
extern void v3p_netlib_initialize();
#include "v3p_netlib_prototypes.h"
#ifdef __cplusplus
}
#endif
/* Cleanup the namespace if not inside a v3p_netlib source. */
#ifndef V3P_NETLIB_SRC
# include "v3p_netlib_unmangle.h"
#endif
/* Automatically initialize the netlib library for C++ clients. */
#if defined(__cplusplus) && !defined(V3P_NETLIB_SRC)
struct v3p_netlib_initializer
{
v3p_netlib_initializer() { v3p_netlib_initialize(); }
};
static v3p_netlib_initializer v3p_netlib_initializer_instance;
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -