12 lines
191 B
C++
12 lines
191 B
C++
// EventHandler.cpp
|
|
|
|
#include "stdafx.h"
|
|
#include "EventHandler.h"
|
|
|
|
void __stdcall CEventHandler::Received()
|
|
{
|
|
ASSERT(NULL != m_pIEventHandler);
|
|
|
|
m_pIEventHandler->Received();
|
|
}
|