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

📄 listitem.cpp

📁 视频播放控制器程序
💻 CPP
字号:
// ListItem.cpp: implementation of the CListItem class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "LiveController.h"
#include "ListItem.h"

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

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

CListItem::CListItem()
{

}

CListItem::~CListItem()
{

}
//////// class ExpertListItem内容  //////
ExpertListItem::ExpertListItem()
{
	pNext = NULL;

}
ExpertListItem::~ExpertListItem()
{
}


///////  class VideoListItem内容 ///////
VideoListItem::VideoListItem()
{
	pNext = NULL;
}
VideoListItem::~VideoListItem()
{
}
WordListShowItem::WordListShowItem()
{
	pnext = NULL;
}
WordListShowItem::~WordListShowItem()
{
}
NameListShowItem::NameListShowItem()
{
}
NameListShowItem::~NameListShowItem()
{
	pnext = NULL;
}

⌨️ 快捷键说明

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