FACT++  1.0
void Converter::GetBinString ( std::vector< char > &  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<char> to which the value should be added

Definition at line 169 of file Converter.cc.

Referenced by Get().

170 {
171  wout << " (" << val << ")";
172 
173  v.insert(v.end(), val.begin(), val.end()+1);
174 }
std::ostream & wout
Definition: Converter.h:30

+ Here is the caller graph for this function: