FACT++  1.0
void Converter::AddString ( std::vector< boost::any > &  vec,
const char *&  ptr 
) const
private

Add the string pointed to by ptr as boost::any to the provided vector

Parameters
vecVector to which the boost::any object should be added
ptrPointer to the binary representation. It will be incremented according to the size of the template argument

Definition at line 460 of file Converter.cc.

461 {
462  const string txt(ptr);
463  vec.push_back(txt);
464  ptr += txt.length()+1;
465 }