/* ------------------------------------------- Copyright ZKA Technologies. ------------------------------------------- */ /***********************************************************************************/ /// @file UserProcessTeam.cxx /// @brief UserProcess teams implementation. /***********************************************************************************/ #include namespace Kernel { /// @brief UserProcess list array getter. /// @return The list of process to schedule. Array& UserProcessTeam::AsArray() { return mProcessList; } /// @brief Get team ID. /// @return The team's ID. ProcessID& UserProcessTeam::Id() noexcept { return mTeamId; } /// @brief Current process getter. /// @return The current process header. Ref& UserProcessTeam::AsRef() { return mCurrentProcess; } } // namespace Kernel // last rev 05-03-24