'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Struct link_cfg_param

odtone::mih::link_cfg_param

Synopsis

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


struct link_cfg_param {

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

  // public data members
  link_param_type type;
  boost::variant< null, uint16 > timer_interval;
  th_action action;
  std::vector< threshold > threshold_list;
};

Description

LINK_CFG_PARAM data type.

link_cfg_param public member functions

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

    Serialize/deserialize the LINK_CFG_PARAM data type.

    Parameters:

    ar

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

link_cfg_param public public data members

  1. link_param_type type;

    Link parameter type.

  2. boost::variant< null, uint16 > timer_interval;

    Timer interval.

  3. th_action action;

    Action to apply to the listed thresholds.

  4. std::vector< threshold > threshold_list;

    Thresholds.


PrevUpHomeNext