pics.h
来自「Accelerated c++ 電子書 對 c++ container 多有描述」· C头文件 代码 · 共 18 行
H
18 行
#ifndef GUARD_pics_h
#define GUARD_pics_h
#include <string>
#include <vector>
std::string::size_type width(const std::vector<std::string>& v);
std::vector<std::string> frame(const std::vector<std::string>& v);
std::vector<std::string> vcat(const std::vector<std::string>& top,
const std::vector<std::string>& bottom);
std::vector<std::string> hcat(const std::vector<std::string>& left,
const std::vector<std::string>& right);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?