initial commit
This commit is contained in:
26
include/siadrive_api/loggingconsumer.h
Normal file
26
include/siadrive_api/loggingconsumer.h
Normal 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
|
||||
Reference in New Issue
Block a user