?? locfmt.cpp
字號:
//// locfmt.cpp// Date/time (combined) format//// written by David Nugent//// This code is public domain. Use for any purpose is unrestricted.//# include "loctm.h"# include STRSTREAM_Hostream &loc_tm::print (ostream & os, int df, int tf) const{ ostrstream pTmp; printDate (pTmp, df); pTmp << ' '; printTime (pTmp, tf); pTmp << ends; char const * p = pTmp.str(); pTmp.rdbuf()->freeze(0); return os << p;}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -