'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Class indication

odtone::mih::indication

Synopsis

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


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

Description

This class allows parsing/generating MIH Indication messages.

indication public construct/copy/destruct

  1. indication();

    Construct an empty MIH Indication Message helper.

  2. explicit indication(mid m);

    Construct an MIH Indication Message helper.

    Parameters:

    m

    The value of the MIH Message ID.

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

    Construct an MIH Indication Message helper.

    Parameters:

    destination

    The value of the MIH Message Destination MIHF ID.

    m

    The value of the MIH Message ID.


PrevUpHomeNext