index
class asIOutputStream { public: virtual void Write(const char *text) = 0; };
void Write(const char *text);
Write is called to send a text string to the stream.
text
The text string that is sent.
top