16 lines
204 B
C++
16 lines
204 B
C++
#include "stdafx.h"
|
|
#include <wx/wx.h>
|
|
#include "ICommand.h"
|
|
|
|
|
|
|
|
|
|
ICommand::ICommand( ICmdReceiver* pCmdReceiver ) : m_pCmdReceiver( pCmdReceiver ), m_bIsUndo( false )
|
|
{
|
|
|
|
}
|
|
|
|
ICommand::~ICommand(void)
|
|
{
|
|
|
|
}
|