Tools.h++ Manual

21-204 104011 Tandem Computers Incorporated
21
virtual RWvostream& put(const wchar_t* p, size_t N)
= 0;
Store the vector of wide chars starting at
p
to the output stream. The chars
should be treated as literal numbers (i.e., not as a character string).
virtual RWvostream& put(const unsigned char* p,
size_t N) = 0;
Store the vector of unsigned chars starting at
p
to the output stream. The chars
should be treated as literal numbers (i.e., not as a character string).
virtual RWvostream& put(const short* p, size_t N)
= 0;
Store the vector of shorts starting at
p
to the output stream.
virtual RWvostream& put(const unsigned short* p,
size_t N) = 0;
Store the vector of unsigned shorts starting at
p
to the output stream.
virtual RWvostream& put(const int* p, size_t N)
= 0;
Store the vector of ints starting at
p
to the output stream.
virtual RWvostream& put(const unsigned int* p,
size_t N) = 0;
Store the vector of unsigned ints starting at
p
to the output stream.
virtual RWvostream& put(const long* p, size_t N)
= 0;
Store the vector of longs starting at
p
to the output stream.
virtual RWvostream& put(const unsigned long* p,
size_t N) = 0;
Store the vector of unsigned longs starting at
p
to the output stream.
virtual RWvostream& put(const float* p, size_t N)
= 0;
Store the vector of floats starting at
p
to the output stream.
virtual RWvostream& put(const double* p, size_t N)
= 0;
Store the vector of doubles starting at
p
to the output stream.