📄 comptime.cxx
字号:
//-< COMPTIME.CXX >--------------------------------------------------*--------*
// POST++ Version 1.0 (c) 1998 GARRET * ? *
// (Persistent Object Storage) * /\| *
// * / \ *
// Created: 2-Feb-98 K.A. Knizhnik * / [] \ *
// Last update: 2-Feb-98 K.A. Knizhnik * GARRET *
//-------------------------------------------------------------------*--------*
// Storing timestamp of program building. Always include this file (sources!)
// in the list of files in makefile rule for producing executables.
//-------------------------------------------------------------------*--------*
extern char* program_compilation_time;
class set_compilation_time {
public:
set_compilation_time() {
program_compilation_time = __DATE__ " " __TIME__;
}
};
static set_compilation_time timestamp;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -