#include <istring.h>
This class might not provide all the functions desirous of a normal string class. It is only intended to support the ImprolaLib and its dependents.
Public Member Functions | |
String (void) | |
Default Constructor. Creates an empty string. | |
String (const char *str) | |
Initialiser. | |
String (const String &s) | |
Copy constructor. | |
~String () | |
Destructor. | |
void | setData (const char *str) |
Sets the string data. | |
char * | getData (void) |
Returns the string data held by the object. | |
void | operator= (String s) |
Overloaded assignment operator. It is only a reference copier. |
|
Initialiser.
|
|
Copy constructor.
|
|
Overloaded assignment operator.
The |