1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#include "clDebugRemoteObjectEvent.h"
clDebugRemoteObjectEvent::clDebugRemoteObjectEvent(const clDebugRemoteObjectEvent& event) { *this = event; }
clDebugRemoteObjectEvent::clDebugRemoteObjectEvent(wxEventType commandType, int winid)
: clDebugEvent(commandType, winid)
{
}
clDebugRemoteObjectEvent::~clDebugRemoteObjectEvent() {}
clDebugRemoteObjectEvent& clDebugRemoteObjectEvent::operator=(const clDebugRemoteObjectEvent& src)
{
// Call parent operator =
clDebugEvent::operator=(src);
m_remoteObject = src.m_remoteObject;
return *this;
}
|