/*******************************************************************************
 *
 * File:     MessagingSystem.cp
 *
 * Contents: Implementation of the class MessagingSystem.
 *
 * Copyright 2017
 *
 * Author: David Juhasz (david.juhasz@tuwien.ac.at)
 *
 ******************************************************************************/

#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

