⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ~packet.~cpp

📁 网上聊天系统
💻 ~CPP
字号:
// Packet.cpp: implementation of the CPacket class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "ChatClient.h"
#include "Packet.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CPacket::CPacket()
{

}

CPacket::~CPacket()
{

}

CString CPacket::GetNextCon(CString& pac, char mark)
{
   CString res="";
   int len = pac.Find(mark,0);
   if(len>=0)
   {
	   for(int i=0;i<len;i++)
	   {
		   res.Insert(i,pac[i]);
	   }
	   pac.Delete(0,len+1);
   }
   else
   {
	   res=pac;
	   pac="";
   }
   return res;
}

⌨️ 快捷键说明

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