'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Struct querier_loc

odtone::mih::querier_loc

Synopsis

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


struct querier_loc {
  // construct/copy/destruct
  querier_loc();

  // public member functions
  template<typename ArchiveT> void serialize(ArchiveT &);

  // public data members
  boost::variant< null, location > _location;
  boost::variant< null, link_addr > _link_addr;
  boost::variant< null, nghb_radius > _nghb_radius;
};

Description

QUERIER_LOC data type.

querier_loc public construct/copy/destruct

  1. querier_loc();

    Construct an empty QUERIER_LOC data type.

querier_loc public member functions

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

    Serialize/deserialize the QUERIER_LOC data type.

    Parameters:

    ar

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

querier_loc public public data members

  1. boost::variant< null, location > _location;

    Location information.

  2. boost::variant< null, link_addr > _link_addr;

    Link address.

  3. boost::variant< null, nghb_radius > _nghb_radius;

    Radius from the center point of querier’s location.


PrevUpHomeNext