FACT++  1.0
template<class T >
void Converter::GetBinImp ( std::vector< boost::any > &  v,
const T &  val 
) const
private

This is just a simplification. For the time being it is used to output the interpreted contents to the logging stream. Its main purpose is to add the contents of val as a boost::any object to the vector v

Template Parameters
datatype of the variable which should be added
Parameters
valreference to the data
vvector<boost::any> to which the value should be added

Definition at line 149 of file Converter.cc.

150 {
151  wout << " (" << val << ")";
152 
153  v.push_back(val);
154 }
std::ostream & wout
Definition: Converter.h:30