#include "stdafx.h" #include #include "ICommand.h" ICommand::ICommand( ICmdReceiver* pCmdReceiver ) : m_pCmdReceiver( pCmdReceiver ), m_bIsUndo( false ) { } ICommand::~ICommand(void) { }