#include <ilviews/macros.h>
#include <stdlib.h>
#include <iostream.h>
#include <ilviews/dataccess/macros.h>
Classes | |
class | IliString |
User interface class. More... | |
Functions | |
int | operator!= (const char *a, const IliString &b) |
Compares two strings. More... | |
int | operator!= (const IliString &a, const char *b) |
Compares two strings. More... | |
int | operator!= (const IliString &a, const IliString &b) |
Compares two strings. More... | |
ostream & | operator<< (ostream &out, const IliString &s) |
Writes a string into a stream. More... | |
int | operator== (const char *a, const IliString &b) |
Compares two strings. More... | |
int | operator== (const IliString &a, const char *b) |
Compares two strings. More... | |
int | operator== (const IliString &a, const IliString &b) |
Compares two strings. More... | |
istream & | operator>> (istream &input, IliString &s) |
Writes a string into a stream. More... | |
Library: dataccess
Declarations about strings.
int operator!= | ( | const char * | a, |
const IliString & | b | ||
) |
Compares two strings.
a | The first string. |
b | The second string. |
0
if the strings are equal, and 1
otherwise. int operator!= | ( | const IliString & | a, |
const char * | b | ||
) |
Compares two strings.
a | The first string. |
b | The second string. |
0
if the strings are equal, and 1
otherwise. Compares two strings.
a | The first string. |
b | The second string. |
0
if the strings are equal, and 1
otherwise. ostream& operator<< | ( | ostream & | out, |
const IliString & | s | ||
) |
Writes a string into a stream.
out | The output stream. |
s | The string. |
int operator== | ( | const char * | a, |
const IliString & | b | ||
) |
Compares two strings.
a | The first string. |
b | The second string. |
1
if the strings are equal, and 0
otherwise. int operator== | ( | const IliString & | a, |
const char * | b | ||
) |
Compares two strings.
a | The first string. |
b | The second string. |
1
if the strings are equal, and 0
otherwise. Compares two strings.
a | The first string. |
b | The second string. |
1
if the strings are equal, and 0
otherwise. istream& operator>> | ( | istream & | input, |
IliString & | s | ||
) |
Writes a string into a stream.
input | The input stream. |
s | The string. |