📄 my_file.h
字号:
//// C++ Interface: my_file//// Description:////// Author: Jally <jallyx@163.com>, (C) 2008//// Copyright: See COPYING file that comes with this distribution////#ifndef MY_FILE_H#define MY_FILE_H#include "udt.h"class my_file { public: my_file(bool fg); //r false,w true ~my_file(); void chdir(const char *dir); int open(const char *filename, int flags, ...); int stat(const char *filename, struct stat64 *st); DIR *opendir(); private: char path[MAX_PATHBUF]; bool flag;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -