Constructors
- ImqString( );
- The default constructor.
- ImqString( const ImqString & string );
- The copy constructor.
- ImqString( const char c );
- The characters comprise c.
- ImqString( const char * text );
- The characters are copied from text.
- ImqString( const void * buffer, const size_t length );
- Copies length bytes starting from buffer and assigns
them to the characters. Substitution is made for any
null characters copied. The substitution character is a period (.). No special
consideration is given to any other non-printable or non-displayable characters
copied.