print_util.cpp
来自「The goal of this library is to make ODBC」· C++ 代码 · 共 20 行
CPP
20 行
// handy utilities for tests ... making output easier to delimit// Initial: 12/27/2000 - grabbed from example project#include "print_util.h"// prints out asterisks between each example functionvoid PrintSeparator(ostream &o){ o << endl; o << "********************************" << endl; o << endl;}// prints a header with title for a particular examplevoid PrintHeader(ostream &o, const string &title){ o << "!!!!!!!!!!!!!!!!!!!!! Begin Example " << title << " !!!!!!!!!!!!!!!!!!!! "; o << endl;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?