Append chain with supplied char string
| Return Type | Function name | Arguments |
|---|---|---|
| hzChain& | hzChain::operator<< | (const char*,) |
Declared in file: hzChain.h
Defined in file : hzChain.cpp
Function Logic:
Function body:
hzChain& hzChain::operator<< (const char* s)
{
// Append chain with supplied char string
//
// Arguments: 1) s The null terminated string to add to this chain
// Returns: Reference to this chain
_hzfunc("hzChain::operator<<(char*)") ;
return operator+=(s) ;
}