22 lines
244 B
C++
22 lines
244 B
C++
#pragma once
|
|
#include <SiaCommon.h>
|
|
|
|
NS_BEGIN(Sia)
|
|
NS_BEGIN(Api)
|
|
|
|
class CEvent;
|
|
|
|
class AFX_EXT_CLASS CDebugConsumer
|
|
{
|
|
public:
|
|
CDebugConsumer();
|
|
|
|
public:
|
|
~CDebugConsumer();
|
|
|
|
private:
|
|
void ProcessEvent(const CEvent& eventData);
|
|
};
|
|
|
|
NS_END(2);
|