Chater.cpp
资源名称:(vc).rar [点击查看]
上传用户:wpp2016
上传日期:2010-02-01
资源大小:1250k
文件大小:1k
源码类别:
Telnet服务器
开发平台:
Visual C++
- // Chater.cpp : implementation file
- //
- #include "stdafx.h"
- #include "anywhere.h"
- #include "Chater.h"
- #include "talk.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CChater
- CChater::CChater(CTalk *ptalk)
- {
- m_ptalk=ptalk;
- }
- CChater::~CChater()
- {
- if (pfile!=NULL) delete pfile;
- if (arin!=NULL) delete arin;
- if (arout!=NULL) delete arout;
- }
- // Do not edit the following lines, which are needed by ClassWizard.
- #if 0
- BEGIN_MESSAGE_MAP(CChater, CSocket)
- //{{AFX_MSG_MAP(CChater)
- ON_COMMAND(ID_CHAT_CONNECT, OnChatConnect)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- #endif // 0
- /////////////////////////////////////////////////////////////////////////////
- // CChater member functions
- void CChater::Send(CString dwValue)
- {
- //CArchive arIn(&file, CArchive::load); // construct an archive
- //CArchive arOut(pfile, CArchive::store);
- //arIn >> dwValue; // use the archive to pass data
- *arout << dwValue;
- arout->Flush();
- //pfile->Flush();
- //MessageBox(NULL,dwValue,"提示",MB_OK);
- }
- void CChater::OnReceive(int nErrorCode)
- {
- CString dwValue;
- *arin >>dwValue;
- CSocket::OnReceive(nErrorCode);
- m_ptalk->Recv(dwValue);
- }
- void CChater::init()
- {
- pfile=new CSocketFile(this);
- arin=new CArchive(pfile, CArchive::load);
- arout=new CArchive(pfile,CArchive::store);
- }