📄 vcl_deprecated.cxx
字号:
// This is vcl/vcl_deprecated.cxx
#include "vcl_deprecated.h"
#include <vcl_iostream.h>
#include <vcl_cstdlib.h>
void
vcl_deprecated_warn( const char* func_name )
{
vcl_cerr << "Function " << func_name << " is deprecated." << vcl_endl;
}
void
vcl_deprecated_abort( const char* func_name )
{
vcl_cerr << "Function " << func_name << " is deprecated." << vcl_endl;
vcl_abort();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -