index

Reference: asIOutputStream

class asIOutputStream
{
public:
  virtual void Write(const char *text) = 0;
};

Write

void Write(const char *text);

Description

Write is called to send a text string to the stream.

Parameters

text 

The text string that is sent.

top