EventBus/lib/include/eventbus/internal/CallbackVector.h
Dawid Drozd 7cf4465168 Add AsyncEventBus
Now it is possible to schedule events from different threads.
2018-09-08 19:56:19 +02:00

17 lines
211 B
C++

#pragma once
namespace Dexode
{
namespace Internal
{
struct CallbackVector
{
virtual ~CallbackVector() = default;
virtual void remove(const int token) = 0;
};
} // namespace Internal
} // namespace Dexode