You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
333 B
C++
17 lines
333 B
C++
#include "StdAfx.h"
|
|
#include "WorkCmdContainer.h"
|
|
|
|
CWorkCmdContainer CWorkCmdContainer::m_Instance;
|
|
CWorkCmdContainer::CWorkCmdContainer(void)
|
|
{
|
|
}
|
|
CWorkCmdContainer::~CWorkCmdContainer(void)
|
|
{
|
|
}
|
|
void CWorkCmdContainer::AddCmd(CWorkCmd *p)
|
|
{
|
|
//保存到智能指针
|
|
Sptr<CWorkCmd> sPtr(p);
|
|
m_WorkCmdVec.push_back(sPtr);
|
|
}
|