'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Struct iq_bin_data

odtone::mih::iq_bin_data

Synopsis

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


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

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

  // public data members
  boost::variant< null, querier_loc > _querier_loc;
  boost::variant< null, net_type_inc > _net_type_inc;
  boost::variant< null, netwk_inc > _netwk_inc;
  boost::variant< null, rpt_templ > _rpt_templ;
  boost::variant< null, rpt_limit > _rpt_limit;
  boost::variant< null, curr_pref > _currency;
};

Description

IQ_BIN_DATA data type.

iq_bin_data public construct/copy/destruct

  1. iq_bin_data();

    Construct an empty IQ_BIN_DATA data type.

iq_bin_data public member functions

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

    Serialize/deserialize the IQ_BIN_DATA data type.

    Parameters:

    ar

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

iq_bin_data public public data members

  1. boost::variant< null, querier_loc > _querier_loc;

    Querier's location.

  2. boost::variant< null, net_type_inc > _net_type_inc;

    Set of link types.

  3. boost::variant< null, netwk_inc > _netwk_inc;

    List of network identifiers.

  4. boost::variant< null, rpt_templ > _rpt_templ;

    List of IEs types.

  5. boost::variant< null, rpt_limit > _rpt_limit;

    Report limitation.

  6. boost::variant< null, curr_pref > _currency;

    Currency preference.


PrevUpHomeNext