'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Class response

odtone::mih::response

Synopsis

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


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

Description

This class allows parsing/generating MIH Response messages.

response public construct/copy/destruct

  1. response();

    Construct an empty MIH Response Message helper.

  2. explicit response(mid m);

    Construct a MIH Response Message helper.

    Parameters:

    m

    The value of the MIH Message ID.

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

    Construct an MIH Response Message helper.

    Parameters:

    destination

    The value of the MIH Message Destination MIHF ID.

    m

    The value of the MIH Message ID.


PrevUpHomeNext