'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Class ir_bin_oarchive

odtone::mih::ir_bin_oarchive

Synopsis

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


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

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

Description

IR_BIN_DATA output archive.

ir_bin_oarchive public construct/copy/destruct

  1. ir_bin_oarchive(ir_bin_data & data);

    Construct a ir_bin_iarchive.

ir_bin_oarchive public member functions

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

    Deserialize an IE from the IR_BIN_DATA data type.

    Parameters:

    val

    The value to deserialize.


PrevUpHomeNext