'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Class link_tuple_id

odtone::mih::link_tuple_id

Synopsis

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


class link_tuple_id : public odtone::mih::link_id {
public:
  // construct/copy/destruct
  link_tuple_id();

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

  // public data members
  boost::variant< null, link_addr > poa_addr;
};

Description

LINK_TUPLE_ID data type.

link_tuple_id public construct/copy/destruct

  1. link_tuple_id();

    Construct an empty LINK_TUPLE_ID data type.

link_tuple_id public member functions

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

    Serialize/deserialize the LINK_TUPLE_ID data type.

    Parameters:

    ar

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

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

    Check if the LINK_TUPLE_ID data type is equal to another LINK_TUPLE_ID.

    Parameters:

    other

    The LINK_TUPLE_ID to compare to.

    Returns:

    True if they are equal or false otherwise.

link_tuple_id public public data members

  1. boost::variant< null, link_addr > poa_addr;

    PoA link address.


PrevUpHomeNext