'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Struct l2_3gpp_3g_cell_id

odtone::mih::l2_3gpp_3g_cell_id

Synopsis

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


struct l2_3gpp_3g_cell_id {

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

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

  // public data members
  uint8 plmn_id;
  cell_id _cell_id;
};

Description

L2_3GPP_3G_CELL_ID data type.

l2_3gpp_3g_cell_id public member functions

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

    Serialize/deserialize the L2_3GPP_3G_CELL_ID data type.

    Parameters:

    ar

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

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

    Check if the L2_3GPP_3G_CELL_ID is equal to another L2_3GPP_3G_CELL_ID.

    Parameters:

    other

    The L2_3GPP_3G_CELL_ID to compare with.

    Returns:

    True if they are equal or false otherwise.

l2_3gpp_3g_cell_id friend functions

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

    L2_3GPP_3G_CELL_ID data type output.

    Parameters:

    addr

    L2_3GPP_3G_CELL_ID data type.

    out

    ostream.

    Returns:

    ostream reference.

l2_3gpp_3g_cell_id public public data members

  1. uint8 plmn_id;

    PLMN_ID data type.

  2. cell_id _cell_id;

    CELL_ID data type.


PrevUpHomeNext