'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Class confirm

odtone::mih::confirm

Synopsis

// In header: </home/carlos/Projectos/odtone/inc/odtone/mih/confirm.hpp>


class confirm : public odtone::mih::message_helper {
public:
  enum mid;
  // construct/copy/destruct
  confirm();
  explicit confirm(mid);
  confirm(mid, const id &);
};

Description

This class allows parsing and generating MIH Confirm messages.

confirm public construct/copy/destruct

  1. confirm();

    Construct an empty MIH Confirm Message helper.

  2. explicit confirm(mid m);

    Construct a MIH Confirm Message helper.

    Parameters:

    m

    The value of the MIH Message ID.

  3. confirm(mid m, const id & destination);

    Construct a MIH Confirm Message helper.

    Parameters:

    destination

    The value of the MIH Message Destination MIHF ID.

    m

    The value of the MIH Message ID.


PrevUpHomeNext