1
0

initial commit

This commit is contained in:
2025-10-21 07:58:47 -05:00
commit 19adc4e2b0
144 changed files with 107723 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
#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