|
cgma
|
#include "CubitString.hpp"#include "CubitDefines.h"#include <iomanip>#include <cstring>#include <stdexcept>#include <algorithm>#include <stdarg.h>Go to the source code of this file.
Functions | |
| CubitString | operator+ (const CubitString &s1, const CubitString &s2) |
| CubitString | operator+ (const CubitString &s1, const char *c2) |
| CubitString | operator+ (const char *c1, const CubitString &s2) |
| bool | operator<= (const CubitString &s1, const CubitString &s2) |
| bool | operator>= (const CubitString &s1, const CubitString &s2) |
| bool | operator< (const CubitString &s1, const CubitString &s2) |
| bool | operator> (const CubitString &s1, const CubitString &s2) |
| CubitString operator+ | ( | const CubitString & | s1, |
| const CubitString & | s2 | ||
| ) |
Definition at line 184 of file CubitString.cpp.
{
return CubitString(s1) += s2;
}
| CubitString operator+ | ( | const CubitString & | s1, |
| const char * | c2 | ||
| ) |
Definition at line 189 of file CubitString.cpp.
{
return CubitString(s1) += c2;
}
| CubitString operator+ | ( | const char * | c1, |
| const CubitString & | s2 | ||
| ) |
Definition at line 194 of file CubitString.cpp.
{
return CubitString(c1) += s2;
}
| bool operator< | ( | const CubitString & | s1, |
| const CubitString & | s2 | ||
| ) |
Definition at line 373 of file CubitString.cpp.
| bool operator<= | ( | const CubitString & | s1, |
| const CubitString & | s2 | ||
| ) |
Definition at line 363 of file CubitString.cpp.
| bool operator> | ( | const CubitString & | s1, |
| const CubitString & | s2 | ||
| ) |
Definition at line 378 of file CubitString.cpp.
| bool operator>= | ( | const CubitString & | s1, |
| const CubitString & | s2 | ||
| ) |
Definition at line 368 of file CubitString.cpp.