laprefs.cc

来自「lapack++的2.5.2版本」· CC 代码 · 共 27 行

CC
27
字号
#ifdef HAVE_CONFIG_H# include <config.h>#endif#include "lafnames.h"#include LA_PREFS_HLaPreferences::pFormat LaPreferences::print_format = LaPreferences::NORMAL;bool LaPreferences::print_newlines = true;void LaPreferences::setPrintFormat(pFormat p, bool newlines){  print_format = p;  print_newlines = newlines;}LaPreferences::pFormat LaPreferences::getPrintFormat(){  return print_format;}bool LaPreferences::getPrintNewLines(){  return print_newlines;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?