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.
20 lines
295 B
C++
20 lines
295 B
C++
#include "StdAfx.h"
|
|
#include "CommandMirror.h"
|
|
|
|
|
|
CCommandMirror::CCommandMirror(void)
|
|
{
|
|
}
|
|
CCommandMirror::~CCommandMirror(void)
|
|
{
|
|
}
|
|
void CCommandMirror::ExcuteExt()
|
|
{
|
|
m_ObjContainer.OperateObj(m_Par,false);
|
|
}
|
|
void CCommandMirror::UndoExt()
|
|
{
|
|
m_ObjContainer.OperateObj(m_Par,false);
|
|
}
|
|
|