tagging release
[dasher.git] / Src / Win32 / EditWrapper.cpp
blob5b5fd7a0b4ad1116ca747e311f0c59b782e9ce7c
2 #include "WinCommon.h"
3 #include "EditWrapper.h"
5 CEditWrapper::CEditWrapper(void) {
6 m_pEventHandler = NULL;
9 CEditWrapper::~CEditWrapper(void) {
12 void CEditWrapper::HandleEvent(Dasher::CEvent *pEvent) {
14 // Just pass the event to the event handler if it exists
16 if(m_pEventHandler) {
17 m_pEventHandler->HandleEvent(pEvent);