#include "CifString.h"
int CifString::operator==(const CifString &a, const CifString &b)
#include "CifString.h"
CifString a, b, c;
a.Copy("ab");
b.Copy("cd");
if (a==b)
cout<<"a==b"<<endl;
else
cout<<"a!=b"<<endl;
operator==(const CifString &, const CifString &) Cheks if two input CifString are the same.
| a | reference to a CifString |
| b | reference to a CifString |
Returns 1 if CifStrings are the same, otherwise 0.
None