#include "CifString.h"
void CifString::operator+=(const CifString &s)
void CifString::operator+=(const char *s)
void CifString::operator+=(const char c)
void CifString::operator+=(const int c)
void CifString::operator+=(const long c)
void CifString::operator+=(const double c)
#include "CifString.h"
CifString a;
a="CifString";
a+=1;
operator+=(const CifString &) Adds CifString s to the end of this string.
operator+=(const char *) Adds a null terminated string s onto the end of this string. The null byte isn't added.
operator+=(const char ) Adds a single character c to the end of the string.
operator+=(const int) Adds a null terminated string generated from c to the end of the string.
operator+=(const long) Adds a null terminated string generated from c to the end of the string.
operator+=(const double) Adds a to null terminated string generated from c the end of the string.
| s | reference to a CifString |
| c | null-terminated string |
| c | one character |
| c | integer value |
| c | long integer value |
| c | double value |
None
The string may grow if necessary and can be.