tscript.h
上传用户:haiweijt
上传日期:2018-02-23
资源大小:8195k
文件大小:0k
源码类别:

Telnet服务器

开发平台:

Visual C++

  1. #ifndef __TSCRIPT_H
  2. #define __TSCRIPT_H
  3. #include <windows.h>
  4. #include <stdio.h>
  5. #include "tnetwork.h"
  6. class TScript {
  7. public:
  8. TScript(TNetwork &RefNetwork):Network(RefNetwork) {fp = NULL;}
  9. ~TScript() {}
  10. BOOL processScript(char *data);
  11. void initScript(char *filename);
  12. private:
  13. FILE *fp;
  14. char *script;
  15. TNetwork &Network;
  16. };
  17. #endif