////////////////////////////////////////////////////////////////////////////////////////////////////
        /// \fn public ChandyLamport_OneRoundMessage(ChandyLamport_OneRoundMessage sourceMessage, ChandyLamport_OneRoundChannel sendingChannel): base(sourceMessage, sendingChannel)
        ///
        /// \brief Constructor.
        ///
        /// \par Description.
        ///      A message that is duplicated to the source except for the channel parameters.
        ///
        /// \par Algorithm.
        ///
        /// \par Usage Notes.
        ///      This constructor is useful when you want to forward a message to other channels
        ///
        /// \author Ilanh
        /// \date 14/03/2017
        ///
        /// \param sourceMessage  (ChandyLamport_OneRoundMessage) - Message describing the source.
        /// \param sendingChannel (ChandyLamport_OneRoundChannel) - The sending channel.
        ////////////////////////////////////////////////////////////////////////////////////////////////////

        public ChandyLamport_OneRoundMessage(ChandyLamport_OneRoundNetwork network, ChandyLamport_OneRoundMessage sourceMessage, ChandyLamport_OneRoundChannel sendingChannel) :
            base(network, sourceMessage, sendingChannel)
        {
        }
        ////////////////////////////////////////////////////////////////////////////////////////////////////
        /// \fn public ChandyLamport_OneRoundMessage(ChandyLamport_OneRoundNetwork network, ChandyLamport_OneRoundMessage sourceMessage): base(network, sourceMessage)
        ///
        /// \brief Constructor.
        ///
        /// \par Description.
        ///      Constructor that generates a duplication of a source message.
        ///
        /// \par Algorithm.
        ///
        /// \par Usage Notes.
        ///
        /// \author Ilanh
        /// \date 27/06/2017
        ///
        /// \param network       (ChandyLamport_OneRoundNetwork) - The network.
        /// \param sourceMessage (ChandyLamport_OneRoundMessage) - Message describing the source.
        ////////////////////////////////////////////////////////////////////////////////////////////////////

        public ChandyLamport_OneRoundMessage(ChandyLamport_OneRoundNetwork network, ChandyLamport_OneRoundMessage sourceMessage) : base(network, sourceMessage)
        {
        }