'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Struct link_param_report

odtone::mih::link_param_report

Synopsis

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


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

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

  // public data members
  link_param param;
  boost::variant< null, threshold > thold;
};

Description

LINK_PARAM_RPT data type.

link_param_report public construct/copy/destruct

  1. link_param_report();

    Construct a LINK_PARAM_RPT data type.

link_param_report public member functions

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

    Serialize/deserialize the LINK_PARAM_RPT data type.

    Parameters:

    ar

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

link_param_report public public data members

  1. link_param param;

    Link parameter.

  2. boost::variant< null, threshold > thold;

    Threshold.


PrevUpHomeNext