#ifndef ENTT_PROCESS_FWD_HPP #define ENTT_PROCESS_FWD_HPP #include "../stl/cstdint.hpp" #include "../stl/memory.hpp" namespace entt { template> class basic_process; /*! @brief Alias declaration for the most common use case. */ using process = basic_process; template> class basic_scheduler; /*! @brief Alias declaration for the most common use case. */ using scheduler = basic_scheduler; } // namespace entt #endif