FACT++  1.0
template<class T >
void Converter::Add ( std::string &  str,
const char *&  ptr 
) const
private

Convert the pointer using GetString into a string and add it (prefixed by a whaitespace) to the given string.

Parameters
strReference to the string to which the ptr should be added
ptrPointer to the binary representation. It will be incremented according to the sze of the template argument
Template Parameters
TType as which the binary data should be interpreted

Definition at line 404 of file Converter.cc.

405 {
406  str += ' ' + GetString<T>(ptr);
407 }
char str[80]
Definition: test_client.c:7