hweventc.cc

来自「手写识别是模式识别中研究得一个热点」· CC 代码 · 共 17 行

CC
17
字号
#include "HWEventC.hh"ostream& operator << (ostream& outfile, HWEventC Event){  outfile << Event.Starting << ' ' << Event.Time << ' ' << Event.Name << "\n";  return outfile;}istream& operator >> (istream& infile, HWEventC& Event){  infile >> Event.Starting >> Event.Time;  infile.getline(Event.Name, 80, '\n');  return infile;}

⌨️ 快捷键说明

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