1
0
This repository has been archived on 2025-10-21. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
siadrive/include/siadrive_api/loggingconsumer.h
2025-10-21 07:58:47 -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