FACT++  1.0
void Converter::GetBinString ( std::vector< boost::any > &  v,
const std::string &  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 the provided string at the end of the vector v. vector v

Parameters
valreference to the string
vvector<boost::any> to which the value should be added

Definition at line 189 of file Converter.cc.

190 {
191  wout << " (" << val << ")";
192 
193  v.push_back(val);
194  v.push_back('\n');
195 }
std::ostream & wout
Definition: Converter.h:30