فهرست منبع

meta: add fwd.hpp (see #735)

Michele Caini 4 سال پیش
والد
کامیت
c30dfe3bfe
2فایلهای تغییر یافته به همراه39 افزوده شده و 0 حذف شده
  1. 1 0
      src/entt/fwd.hpp
  2. 38 0
      src/entt/meta/fwd.hpp

+ 1 - 0
src/entt/fwd.hpp

@@ -1,5 +1,6 @@
 #include "core/fwd.hpp"
 #include "core/fwd.hpp"
 #include "entity/fwd.hpp"
 #include "entity/fwd.hpp"
+#include "meta/fwd.hpp"
 #include "poly/fwd.hpp"
 #include "poly/fwd.hpp"
 #include "resource/fwd.hpp"
 #include "resource/fwd.hpp"
 #include "signal/fwd.hpp"
 #include "signal/fwd.hpp"

+ 38 - 0
src/entt/meta/fwd.hpp

@@ -0,0 +1,38 @@
+#ifndef ENTT_META_FWD_HPP
+#define ENTT_META_FWD_HPP
+
+
+namespace entt {
+
+
+class meta_sequence_container;
+
+
+class meta_associative_container;
+
+
+class meta_any;
+
+
+struct meta_handle;
+
+
+struct meta_prop;
+
+
+struct meta_ctor;
+
+
+struct meta_data;
+
+
+struct meta_func;
+
+
+class meta_type;
+
+
+}
+
+
+#endif