#include <cstddef>
#include <cstring>
#include <string>
#include <stdexcept>
#include <algorithm>
#include <ostream>
#include <OnixS/CboeCFE/Trading/BOE/Compiler.h>
Go to the source code of this file.
|
StrRef | toStrRef (const std::string &str) |
|
StrRef | toStrRef (const Char *cStr) |
|
std::string | toStr (StrRef ref) |
|
void | toStr (std::string &str, StrRef ref) |
|
template<size_t Size> |
void | toStr (std::string &str, const char(&value)[Size]) |
|
void | toStr (std::string &str, Char character) |
|
void | toStr (std::string &str, const std::string &value) |
|
bool | operator== (const StrRef &left, const StrRef &right) |
|
bool | operator!= (const StrRef &left, const StrRef &right) |
|
bool | operator== (const StrRef &ref, const std::string &str) |
|
bool | operator!= (const StrRef &ref, const std::string &str) |
|
bool | operator== (const std::string &str, const StrRef &ref) |
|
bool | operator!= (const std::string &str, const StrRef &ref) |
|
bool | operator== (const StrRef &ref, const Char *str) |
|
bool | operator!= (const StrRef &ref, const Char *str) |
|
bool | operator== (const Char *str, const StrRef &ref) |
|
bool | operator!= (const Char *str, const StrRef &ref) |
|
bool | operator< (const StrRef &left, const StrRef &right) |
|
bool | operator> (const StrRef &left, const StrRef &right) |
|
std::ostream & | operator<< (std::ostream &stream, const StrRef &text) |
|
template<size_t Size> |
StrRef | constructStrRef (const char(&value)[Size]) |
|