From c30dfe3bfee18aa12e50ef5c4371a2791b2669a3 Mon Sep 17 00:00:00 2001 From: Michele Caini Date: Thu, 22 Jul 2021 16:02:03 +0200 Subject: [PATCH] meta: add fwd.hpp (see #735) --- src/entt/fwd.hpp | 1 + src/entt/meta/fwd.hpp | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 src/entt/meta/fwd.hpp 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