smtpo.h

来自「Shorthand是一个强大的脚本语言」· C头文件 代码 · 共 28 行

H
28
字号
#ifndef __smtp_o_h
#define __smtp_o_h

#include "object.h"

class ShhSMTP : public ShhObject
{
protected:
    string m_host;
    int m_port;

protected:
    int send(ShhValueList* args);

public:
    ShhSMTP(ShhModule& module, const YYLTYPE& location);

    void constructor(ShhValueList* args);
    ShhValue executeMethod(const char* name, ShhValueList* args);
    bool hasMethod(const char* name);

    ~ShhSMTP();
};


#endif // __smtp_o_h

⌨️ 快捷键说明

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