📄 fileo.h
字号:
#ifndef __file_o_h
#define __file_o_h
#include "object.h"
#include <stdio.h>
/**
* Shorthand FILE object
*/
class ShhFile : public ShhObject
{
protected:
string m_name;
string m_mode;
string m_last_error;
FILE* m_file;
public:
ShhFile(ShhModule& module, const YYLTYPE& location);
void constructor(ShhValueList* args);
ShhValue executeMethod(const char* name, ShhValueList* args);
bool hasMethod(const char* name);
~ShhFile();
};
#endif //__smtp_o_h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -