#include "CifString.h"
CifString &CifString::operator=(const CifString &s)
CifString &CifString::operator=(const char *s)
#include "CifString.h"
CifString a;
a="CifString";
&operator=(const CifString &) Assigns one string to another. Checks for assignment to self. Uses share-semantics.
&operator=(const char *) Copy a null-terminated string into this object. The string might be resized if necessary and allowed.
| s | reference to a CifString |
| s | null-terminated string |
None
None