mirror of
https://github.com/zeldaret/botw
synced 2026-05-28 08:25:01 -04:00
15 lines
388 B
C++
15 lines
388 B
C++
#include "KingSystem/Utils/Thread/MessageDispatcherBase.h"
|
|
#include "KingSystem/Utils/Thread/MessageTransceiverBase.h"
|
|
|
|
namespace ksys {
|
|
|
|
MessageDispatcherBase::MessageDispatcherBase() = default;
|
|
|
|
MessageDispatcherBase::~MessageDispatcherBase() = default;
|
|
|
|
void MessageDispatcherBase::setAsGlobalInstance() {
|
|
MessageTransceiverBase::setGlobalDispatcher(this);
|
|
}
|
|
|
|
} // namespace ksys
|