DefaultProcess.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
源码类别:

模拟服务器

开发平台:

C/C++

  1. // DefaultProcess.h: interface for the DefaultProcess class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_DEFAULTPROCESS_H__2B739F02_B049_4908_8F8E_1682612BA77A__INCLUDED_)
  5. #define AFX_DEFAULTPROCESS_H__2B739F02_B049_4908_8F8E_1682612BA77A__INCLUDED_
  6. #pragma warning(disable:4786)
  7. #if _MSC_VER > 1000
  8. #pragma once
  9. #endif // _MSC_VER > 1000
  10. #include "ItermProcess.h"
  11. #include<strstream>
  12. using namespace std;
  13. class DefaultProcess : public ItermProcess  
  14. {
  15. public:
  16. strstream& GetTextBuffer();
  17. const string GetType() const;
  18. bool ProcessIterm(const string& sType, istream& DataStream);
  19. void Reset();
  20. DefaultProcess();
  21. virtual ~DefaultProcess();
  22. private:
  23. strstream m_TextInfoBuffer;
  24. };
  25. #endif // !defined(AFX_DEFAULTPROCESS_H__2B739F02_B049_4908_8F8E_1682612BA77A__INCLUDED_)