'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Class ir_bin_iarchive

odtone::mih::ir_bin_iarchive

Synopsis

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


class ir_bin_iarchive {
public:
  // construct/copy/destruct
  ir_bin_iarchive(ir_bin_data &);

  // public member functions
  template<typename T> 
    boost::enable_if< is_tlv_type< T >, ir_bin_iarchive & >::type 
    operator&(const T &);
};

Description

IR_BIN_DATA input archive.

ir_bin_iarchive public construct/copy/destruct

  1. ir_bin_iarchive(ir_bin_data & data);

    Construct a ir_bin_iarchive from a ir_bin_data data type.

    Parameters:

    data

    The ir_bin_data from where extract the information.

ir_bin_iarchive public member functions

  1. template<typename T> 
      boost::enable_if< is_tlv_type< T >, ir_bin_iarchive & >::type 
      operator&(const T & val);

    Serialize an IE to the IR_BIN_DATA data type.

    Parameters:

    val

    The value to serialize.


PrevUpHomeNext