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

📄 xwdisplay.cpp

📁 联通接收发送新程序
💻 CPP
字号:
#include "string.h"
#include "iostream.h"
#include "xwdisplay.hxx"


CXWDisplay::CXWDisplay()
{
  ptopic = new char[100];
  pprocess_infor = new char[100];
  pstatistic_infor = new char[200];

  strcpy( ptopic, "" );
  strcpy( pprocess_infor, "" );
  strcpy( pstatistic_infor, "" );
}

CXWDisplay::~CXWDisplay ()
{
  delete ptopic ;
  delete pprocess_infor ;
  delete pstatistic_infor ;
}


//********************************************************************************
void CXWDisplay::XWDisplay( char * sztopic,
                            char * szprocess,
                            long lmax,
                            long lcurrent )
{
  cout << szprocess << endl;
}

//********************************************************************************
void CXWDisplay::XWDisplayTopic( char * szstopic )
{
  cout<< szstopic << endl;
}

//********************************************************************************
void CXWDisplay::XWDisplayStatistic( char * szstatistic )
{
  cout<< szstatistic << endl;
}

//********************************************************************************
void CXWDisplay::XWBeginDisplay(  )
{
}

//********************************************************************************
void CXWDisplay::XWEndDisplay(  )
{
}



⌨️ 快捷键说明

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