'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Struct l2_3gpp2_addr

odtone::mih::l2_3gpp2_addr

Synopsis

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


struct l2_3gpp2_addr {

  // public member functions
  template<typename ArchiveT> void serialize(ArchiveT &);
  bool operator==(const l2_3gpp2_addr &) const;

  // friend functions
  friend std::ostream & operator<<(std::ostream &, const l2_3gpp2_addr &);

  // public data members
  octet_string value;
};

Description

Define L2_3GPP2_ADDR data type.

l2_3gpp2_addr public member functions

  1. template<typename ArchiveT> void serialize(ArchiveT & ar);

    Serialize/deserialize the L2_3GPP2_ADDR data type.

    Parameters:

    ar

    The archive to/from where serialize/deserialize the data type.

  2. bool operator==(const l2_3gpp2_addr & other) const;

    Check if the L2_3GPP2_ADDR is equal to another L2_3GPP2_ADDR.

    Parameters:

    other

    The L2_3GPP2_ADDR to compare with.

    Returns:

    True if they are equal or false otherwise.

l2_3gpp2_addr friend functions

  1. friend std::ostream & 
    operator<<(std::ostream & out, const l2_3gpp2_addr & addr);

    L2_3GPP2_ADDR data type output.

    Parameters:

    addr

    L2_3GPP2_ADDR data type.

    out

    ostream.

    Returns:

    ostream reference.

l2_3gpp2_addr public public data members

  1. octet_string value;

    L2_3GPP2_ADDR data type.


PrevUpHomeNext