FACT++  1.0
void Converter::AddString ( std::string &  str,
const char *&  ptr 
) const
private

Add the string pointed to by ptr 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 size of the template argument

Definition at line 442 of file Converter.cc.

Referenced by Get().

443 {
444  const string txt(ptr);
445  str += ' '+txt;
446  ptr += txt.length()+1;
447 }
char str[80]
Definition: test_client.c:7

+ Here is the caller graph for this function: