fxsms.h
来自「sms发送短信的程序」· C头文件 代码 · 共 44 行
H
44 行
/* * Written By S砤womir Szczyrba <steev@hot.pl> * All rights reserved. No warrenties, use at your own risk. * This source is distributed under the GNU GENERAL PUBLIC LICENCE, * see the file "COPYING" for more information. */#ifndef FXSMS_H #define FXSMS_H#include <fox-1.4/fx.h>class FXAPI FXSMS {private:protected: static FXuchar plChars[]; static FXuchar usChars[]; static FXString phone; static FXString message; static FXString proxyAddress; static FXString proxyPort; static FXint proxy; static FXString error;//FXProgressDialog *progress; FXApp *app;public:// constructor FXSMS(){} FXSMS(FXApp * a){app=a;}// virtual ~FXSMS(); ~FXSMS(){}; FXString convert(FXString s); void setProxyAddress(FXString a); void setProxyPort(FXString p); void useProxy(FXint p); void setPhone(FXString ph); void setMessage(FXString ms); const char *getError(void);};#endif /* FXSMS_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?