1
0
This repository has been archived on 2025-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
Files
siadrive/include/siadrive_api/loggingconsumer.h
2017-04-03 19:48:53 -05:00

26 lines
426 B
C++

#ifndef _LOGGINGCONSUMER_H
#define _LOGGINGCONSUMER_H
#include <siacommon.h>
NS_BEGIN(Sia)
NS_BEGIN(Api)
class CEvent;
enum class EventLevel;
class SIADRIVE_EXPORTABLE CLoggingConsumer
{
public:
CLoggingConsumer(const EventLevel& eventLevel);
public:
~CLoggingConsumer();
Property(EventLevel, EventLevel, public, public)
private:
void ProcessEvent(const CEvent& eventData);
};
NS_END(2)
#endif //_LOGGINGCONSUMER_H