diff --git a/src/entt/fwd.hpp b/src/entt/fwd.hpp index 46dfe0d65..f1507c3e4 100644 --- a/src/entt/fwd.hpp +++ b/src/entt/fwd.hpp @@ -1,5 +1,6 @@ #include "core/fwd.hpp" #include "entity/fwd.hpp" +#include "meta/fwd.hpp" #include "poly/fwd.hpp" #include "resource/fwd.hpp" #include "signal/fwd.hpp" diff --git a/src/entt/meta/fwd.hpp b/src/entt/meta/fwd.hpp new file mode 100644 index 000000000..04e67cea9 --- /dev/null +++ b/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