#pragma once#include <iosfwd>#include <string>/*! \file Message.hpp *//*!\class Message* \brief Forwards string to screen* \author Roberto Di Remigio* \date 2018* /class Message {public: /*! \brief Constructor from a string * \param[in] m a message*/Message(const std::string &m) : message_(m){} /*!\brief Constructor from a character array * \param[in] m a message*/Message(constchar* m): message_(std::string(m)){}friend std::ostream&operator<<(std::ostream&os,Message&obj){returnobj.printObject(os);}private: /*! The message to be forwarded to screen */ std::string message_; /*!\brief Function to forward message to screen * \param[in, out] os output stream*/ std::ostream&printObject(std::ostream&os);};