test: common emitter test class

This commit is contained in:
Michele Caini
2024-02-09 10:48:13 +01:00
parent dd95c35309
commit c31e1a939e

14
test/common/emitter.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef ENTT_COMMON_EMITTER_H
#define ENTT_COMMON_EMITTER_H
#include <entt/signal/emitter.hpp>
namespace test {
struct emitter: entt::emitter<emitter> {
using entt::emitter<emitter>::emitter;
};
} // namespace test
#endif