Преглед на файлове

test: common emitter test class

Michele Caini преди 2 години
родител
ревизия
c31e1a939e
променени са 1 файла, в които са добавени 14 реда и са изтрити 0 реда
  1. 14 0
      test/common/emitter.h

+ 14 - 0
test/common/emitter.h

@@ -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