/***************************************************************************//**
 *
 * \file core/MessagingSystem.cp
 *
 * \author David Juhasz (david.juhasz@tuwien.ac.at)
 *
 * \date 2017
 *
 * \brief Implementation for rosa/core/MessagingSystem.hpp.
 *
 ******************************************************************************/

#include "rosa/core/MessagingSystem.hpp"

#include "MessagingSystemImpl.hpp"

namespace rosa {

std::unique_ptr<MessagingSystem>
MessagingSystem::createSystem(const std::string &Name) noexcept {
  return std::unique_ptr<MessagingSystem>(new MessagingSystemImpl(Name));
}

} // End namespace rosa

