30 lines
338 B
C++
30 lines
338 B
C++
// ModuleListCtrl.cpp : 实现文件
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "ModuleListCtrl.h"
|
|
|
|
|
|
// CModuleListCtrl
|
|
|
|
IMPLEMENT_DYNAMIC(CModuleListCtrl, CListCtrl)
|
|
|
|
CModuleListCtrl::CModuleListCtrl()
|
|
{
|
|
|
|
}
|
|
|
|
CModuleListCtrl::~CModuleListCtrl()
|
|
{
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(CModuleListCtrl, CListCtrl)
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
|
|
// CModuleListCtrl 消息处理程序
|
|
|
|
|